Customising footer credits

Community Forums Forums Design Tips and Tricks Customising footer credits

This topic is: not resolved

This topic contains 3 replies, has 3 voices, and was last updated by  Susan 6 months, 1 week ago.

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #3949

    chynna21
    Participant

    Hi I’m trying to customise my footer credits. I’ve got this php to work so far but would like to add at the end powered by wordpress and login in link. Please can someone tell me what I need to add as when I try adding code to this code it comes up with an error.

     

    http://21ststreetdesigns.com

     

    /** Customize the credits */
    add_filter( ‘genesis_footer_creds_text’, ‘custom_footer_creds_text’ );
    function custom_footer_creds_text() {
    echo ‘<div class=”creds”><p>’;
    echo ‘Copyright &copy; ‘;
    echo date(‘Y’);
    echo ‘ &middot; <a href=”http://21ststreetdesigns.com”>21ststreetdesigns.com</a> &middot; Built on the <a href=”http://www.studiopress.com/themes/genesis” title=”Genesis Framework”>Genesis Framework</a>’;
    echo ‘</p></div>’;
    }

    #3980

    anitac
    Moderator
    Post count: 3061

    Us this plugin instead – http://www.studiopress.com/plugins/simple-edits.


    Need customization services or other help? Visit me here: Cre8tiveDiva.com | Twitter: @thecre8tivediva
    Why Not Take The Challenge! – Help us answer some of the unanswered posts

    #4030

    chynna21
    Participant

    Thanks, but I’m trying to not use to many plugins on my site so would rather stick with PHP

    #4047

    Susan
    Moderator
    Post count: 3258

    /** Customize the entire footer */
    remove_action( ‘genesis_footer’, ‘genesis_do_footer’ );
    add_action( ‘genesis_footer’, ‘custom_footer’ );
    function custom_footer() {
    ?>
    <p>&copy; Copyright 2012 <a href=”http://mydomain.com/”>My Domain</a> &middot; All Rights Reserved &middot; Powered by <a href=”http://wordpress.org/”>WordPress</a> &middot; <a href=”http://mydomain.com/wp-admin”>Login</a></p>
    <?php
    }


    Susan @ Graphically Designing I’d love to customize your website! I tweet!
    I’ve taken up the challenge! – help me answer some of the unanswered posts

Viewing 4 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic.