• Resolved downloadmydrums

    (@downloadmydrums)


    I recently launched my blog and everything was fine.

    but now, at the top of my full posts; i’m gettin unwanted random links to other posts on my site. you can view an example of an unwanted link “pro tools tips….” located above of title on this page: https://downloadmydrums.com/2009/05/25/download-my-invaders-drum-kit/

    everything posts fine to the home page but has different extra links at the top of their individual permalink pages.

    advice? thanks in advance

Viewing 3 replies - 1 through 3 (of 3 total)
  • That’s just the previous and next posts navigation for your single post view. There are a couple ways to remove it, one is to find the following code in the theme style.css:

    .navigation_single {
    	padding: 10px 0;
    	font-size: 12px;
    	font-family: Verdana, Arial;
    	text-align: center;
    	margin: 0 0 10px 0;
    }

    and add display: none; so it looks like this:

    .navigation_single {
    	padding: 10px 0;
    	font-size: 12px;
    	font-family: Verdana, Arial;
    	text-align: center;
    	margin: 0 0 10px 0;
            display: none;
    }

    I think that those are previous and next post links designed into the theme for navigation when on a single page.

    Look in single.php for this;

    <div class="navigation_single">
    			<span class="alignleft"><?php next_post_link('&laquo; %link') ?></span>
    			<span class="alignright"><?php previous_post_link('%link &raquo;') ?></span>
    		</div>

    Edit to suit your needs. Don’t forget to make a backup first, just in case the result isn’t what you hoped for.

    Thread Starter downloadmydrums

    (@downloadmydrums)

    nice! thanks for the quick responses fellas. issue resolved.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Unwanted links at top of post’ is closed to new replies.