• Resolved patmorris

    (@patmorris)


    I’m creating blog posts that I want seen only by a person who has received the exact link. My website is yourbusinessreviews.net and the individual post address is yourbusinessreviews.net/company-name-reviews/.
    My problem is that there is a line directly under the header with 2 entries. The entry on the left shows the date the post was published (no problem). The entry on the right shows “previous” and “next” and allows the viewer to go to other posts. How do I get rid of this?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hello try these links.

    link 1

    link 2

    Kind regards

    start by creating a child theme of Twenty Eleven http://codex.wordpress.org/Child_Themes

    then edit single.php in the child theme, and remove:

    <nav id="nav-single">
    						<h3 class="assistive-text"><?php _e( 'Post navigation', 'twentyeleven' ); ?></h3>
    						<span class="nav-previous"><?php previous_post_link( '%link', __( '<span class="meta-nav">&larr;</span> Previous', 'twentyeleven' ) ); ?></span>
    						<span class="nav-next"><?php next_post_link( '%link', __( 'Next <span class="meta-nav">&rarr;</span>', 'twentyeleven' ) ); ?></span>
    					</nav><!-- #nav-single -->

    Thread Starter patmorris

    (@patmorris)

    Got it!. Thank you.

    Thread Starter patmorris

    (@patmorris)

    I’ll mark this resolved. I apreciate the fast response.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Isolate posts from other posts’ is closed to new replies.