Edit Footer.php file to center copyright and my name information
-
I’m running Colinear on www.ads-software.com and have some custom CSS already implemented.
I’m trying to edit the footer.php file. I’m attempting to center some information in the footer:
copyright_symbol with my full_name and current_date. To update the date automatically is not necessary but would be great. Would be great to just add this footer information to begin with.Current content of footer.php:
<?php /** * The template for displaying the footer. * * Contains the closing of the #content div and all content after * * @package Colinear */ ?> </div><!-- #content --> <?php get_sidebar( 'footer' ); ?> <footer id="colophon" class="site-footer" role="contentinfo"> <div class="site-info"> <a href="<?php echo esc_url( __( 'https://www.ads-software.com/', 'colinear' ) ); ?>"><?php printf( esc_html__( 'Proudly powered by %s', 'colinear' ), 'WordPress' ); ?></a> <span class="sep genericon genericon-wordpress"></span> <?php printf( esc_html__( 'Theme: %1$s by %2$s.', 'colinear' ), 'Colinear', '<a href="https://wordpress.com/themes/" rel="designer">Automattic</a>' ); ?> </div><!-- .site-info --> </footer><!-- #colophon --> </div><!-- #page --> <?php wp_footer(); ?> </body> </html>
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘Edit Footer.php file to center copyright and my name information’ is closed to new replies.