There are so many letters and numbers and symbols there that I really don’t know what I can change without destroying everything heheheh
I’d like it to be like this:
Copyright ? 2014 English Pills. All rights reserved.
Theme: Fictive by Automattic | WordPress
@robsantos, for future references, please create a separate thread for your question. Hijacking another member’s thread for one’s own question isn’t generally welcome on here or most other help forums.
That said, here’s your code. I simplified it to just standard HTML so you’d have an easier time editing in the future. (The original printf() is only useful for translation anyway, which isn’t matter much when you use only English.)
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package Fictive
*/
?>
</div><!-- #content -->
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="site-info">
<span>Copyright ? <?php echo date('Y'); ?> <a href="<?php bloginfo('url'); ?>" title="<?php bloginfo('name'); ?>"><?php bloginfo('name'); ?></a>. All rights reserved</span><br />
<span>Theme: <a href="https://www.ads-software.com/themes/fictive" title="Fictive">Fictive</a> by <a href="https://automattic.com/" title="Automattic">Automattic | <a href="https://www.ads-software.com/" title="WordPress">WordPress</a></span>
</div><!-- .site-info -->
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>
<?php echo date(‘Y’); ?> automatically grab the current year. So you won’t have to update it manually.
<?php bloginfo(‘url’); ?> and <?php bloginfo(‘name’); ?> automatically grab the your blog’s default URL and name respectively.