• I have been toying with this theme for a little bit, and would like to remove these captions that appear on the sidebar when you view a single post

    http://www.selflearnla.org/?p=41

    The caption reads

    “What’s this?
    You are currently reading Others Firm Interviews Joe Bryan at SELF LEARN LA.”

    any clues? I’ve hand flipped through all the php files.

Viewing 3 replies - 1 through 3 (of 3 total)
  • click on Appearance Widgets and you should have widget if there is not one then it must be hard coded in your sidebar.php

    this section of sidebar.php contains what your looking for look for the <p> tag.

    <?php } elseif (is_single()) { ?>
        <div class="post_nav">
          <h3>What's this?</h3>
          <p>You are currently reading <strong><?php the_title(); ?></strong> at
            <a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a>.</p>
          <h3>meta</h3>
          <ul class="single_post_meta">
            <li><strong>Author:</strong> <?php the_author(); ?></li>
            <li><strong>Comments: </strong><?php comments_number('No Comments', '1 Comment', '% Comments' );?></li>
            <li><strong>Categories:</strong> <?php the_category(', ') ?></li>
          </ul>
          <p class="edit"><?php edit_post_link('Edit', '', ''); ?></p>
        </div>

    If you take this out it will not show

    <h3>What's this?</h3>
          <p>You are currently reading <strong><?php the_title(); ?></strong> at
            <a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a>.</p>
Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Oulipo modifications’ is closed to new replies.