[Theme: Edin] Editing the footer in Edin. Mission impossible?!
-
Good evening everyone!
I’m a brand new Italian WordPress user, eager to learn and move the first steps in how to develop a website!
Besides that, the reason why I’m here is because I’m facing a few teething issues in setting up my blog (which I apologize, I’m not able to link because is still on my local server).
One of the many issues I’m trying to tackle is that of editing the footer, so that instead of the canonical
Proudly powered by WordPress | Theme: Edin by WordPress.com.
would say something like
? 2015 – Okikukai Karate Uechi-ryu Italia
There are, and I’ve been through, many tutorials which explain how to do that in other themes; I therefore know that I have to work in a child version of my footer.php and replace/edit the chunks of code that I’d like to customize. But here comes the big problem: no matter what parts of the code I decide to edit, the final result will always be the sentence I’ve entered, which however results linked to my last post!!
I’m well aware that without the chance to see my website you probably can’t do that much, however here is the original footer.php and a link to a live demo of the Edin theme (I’ll do my best to migrate my blog tomorrow in the morning!).
<?php /** * The template for displaying the footer. * * Contains the closing of the #content div and all content after * * @package Edin */ ?> </div><!-- #content --> <?php get_sidebar( 'footer' ); ?> <footer id="colophon" class="site-footer" role="contentinfo"> <div class="footer-wrapper clear"> <div class="site-info"> <a href="<?php echo esc_url( __( 'https://www.ads-software.com/', 'edin' ) ); ?>"><?php printf( __( 'Proudly powered by %s', 'edin' ), 'WordPress' ); ?></a> <span class="sep"> | </span> <?php printf( __( 'Theme: %1$s by %2$s.', 'edin' ), 'Edin', '<a href="https://wordpress.com/themes/" rel="designer">WordPress.com</a>' ); ?> </div><!-- .site-info --> <?php if ( has_nav_menu( 'footer' ) ) : ?> <nav class="footer-navigation" role="navigation"> <?php wp_nav_menu( array( 'theme_location' => 'footer', 'menu_class' => 'clear', 'depth' => 1, ) ); ?> </nav><!-- .footer-navigation --> <?php endif; ?> </div><!-- .footer-wrapper --> </footer><!-- #colophon --> </div><!-- #page --> <?php wp_footer(); ?> </body> </html>
And here is the link to the live demo of Edin (https://edindemo.wordpress.com), which actually pretty much resembles my own website, given that up until now I’ve spent most of my time and efforts trying to come up with a solution to this issue…
Many thanks to all of you for considering my request.
I’ll really appreciate any help you can provide.
Muten
- The topic ‘[Theme: Edin] Editing the footer in Edin. Mission impossible?!’ is closed to new replies.