• I can’t figure out where to go to remove the info that comes on the Word Press template. It’s the “meta” info with the login link, etc.

    Any ideas?

Viewing 3 replies - 1 through 3 (of 3 total)
  • I assume you mean the “Default” theme? Ye olde’ big blue box?

    If you look in default theme’s sidebar.php, you’ll see a block like this:

    <li><h2>Meta</h2>
    <ul>
    <?php wp_register(); ?>
    <li><?php wp_loginout(); ?></li>
    <li><a href="https://validator.w3.org/check/referer" title="This page validates as XHTML 1.0 Transitional">Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr></a></li>
    <li><a href="https://gmpg.org/xfn/"><abbr title="XHTML Friends Network">XFN</abbr></a></li>
    <li><a href="https://www.ads-software.com/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress</a></li>
    <?php wp_meta(); ?>
    </ul>
    </li>

    Remove some or all of what you don’t want. Curious about what wp_meta() does? Have a look at the template_tags documentation.

    I’ve modified both sidebar.php files for both classic and default themes and they still show up on the front page. Is something overriding the theme?

    This post:
    https://www.ads-software.com/support/topic/115600

    Answered my question.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to Remove Meta Link Info?’ is closed to new replies.