Forums

[resolved] WordPress footer help (7 posts)

  1. ralf barro
    Member
    Posted 1 year ago #

    Hello im have a problem on my wordpress site, can anyone tell me how can i change the footer text in my wordpress theme. I mean i want to modify the wordpress link on the footer of my site. the link says that "Powered by WordPress and WordPress Theme created with Artisteer.". Does anyone know how to modify this?

    Thanks

    Ralf

  2. Micah Cooksey
    Moderator
    Posted 1 year ago #

    You'll need to edit your footer.php file. You can do this by either using the built-in editor under Appearance > Editor or by FTP. Once you have the footer.php file open, look for the text you mentioned. It'll probably be close to the end of the file.

    It probably looks something like this:
    <p>Powered by <a href="http://wordpress.org">WordPress</a> and WordPress Theme created with <a href="http://somedomain.com">Artisteer</a>.

  3. ralf barro
    Member
    Posted 1 year ago #

    Hello, I haven't found the one that says

    <p>Powered by WordPress and WordPress Theme created with Artisteer.

    in my footer. i have forwarded the code on my footer, can you check if where specifically am i going to edit? thanks

    <?php
    $content = ob_get_clean();
    echo art_parse_template(art_page_template(), art_page_variables(array('content'=>

    $content)));
    ?>
    <div id="wp-footer">
    <?php wp_footer(); ?>
    <!-- <?php printf(__('%d queries. %s seconds.', THEME_NS),

    get_num_queries(), timer_stop(0, 3)); ?> -->
    </div>
    </body>
    </html>

  4. eridout
    Member
    Posted 1 year ago #

    However a change to footer.php may constitute a change to your theme -- so if (or when) your theme gets an update, your changes could be lost. You don't have to dig very far to read advice that a better approach is to create a child theme, then put a footer.php into that and make your changes there instead.

  5. ralf barro
    Member
    Posted 1 year ago #

    Hello sir,

    Is there any way of modifying the link without creating a child theme?

    Thanks

  6. Micah Cooksey
    Moderator
    Posted 1 year ago #

    Eridout is right. It's better to use the child theme method, especially if you plan on updating your theme in the future.

    You don't have to use a child theme; it's just that in the long run it will save you some time. Read this article - it should help.

  7. ralf barro
    Member
    Posted 1 year ago #

    Thanks for your help guy's

Topic Closed

This topic has been closed to new replies.

About this Topic