• Hello,

    I am having one small problem with my website. On the side bar all I have is the Meta / admin bit and I would like to delete the links saying :

    # Entries RSS
    # Comments RSS
    # www.ads-software.com

    But keep the others. How would I go about doing this ?

    My website is https://www.harrymitchelldesign.com

    Thanks for your help Harry Mitchell

Viewing 1 replies (of 1 total)
  • If using the WordPress Default theme you would delete this line in wp-content/themes/default/sidebar.php

    <li><a href="https://www.ads-software.com/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress</a></li>

    and these two lines in wp-content/themes/default/footer.php

    <a href="<?php bloginfo('rss2_url'); ?>">Entries (RSS)</a>
    and <a href="<?php bloginfo('comments_rss2_url'); ?>">Comments (RSS)</a>.

    So look for something like that in your theme (probably in your theme’s sidebar.php file.

    Related:
    Stepping Into Template Tags
    Stepping Into Templates
    Template Hierarchy

Viewing 1 replies (of 1 total)
  • The topic ‘Removing Meta Links’ is closed to new replies.