• My blog keeps posting the links below. How do I remove this on 2.9.2? I googled this to no avail, mots post where from 2008.

    For example this is what its posting:
    Related Blogs
    * Related Blogs upon LA FEMME NIKITA
    * Pm Lounge

    You can see what im talking about at my website.
    https://iubforum.net/thriller/la-femme-nikita/

    Please someone help me. These links are annoying and I want them off my blog.

Viewing 7 replies - 1 through 7 (of 7 total)
  • Do you have a Related Blogs plugin running?

    Thread Starter iubforum

    (@iubforum)

    No. These are all the plugin I have. Could it be a plugin? I tought it was wordpress doing it automatically…

    ADPS Reposter
    AJAX Random Posts
    Akismet
    Contact Form 7
    Delete Duplicate Posts
    Google XML Sitemaps
    Mass Page Maker
    MaxBlogPress Ping Optimizer
    OnlyWire for WordPress
    Ping Crawl
    Platinum SEO Pack
    StatPress Seolution
    Twitter for WordPress
    Ultimate Google Analytics
    WordPress WriteAgain!
    WP Super Cache
    WP to Twitter

    I’m pretty sure WordPress isn’t doing this itself. Is it a build-in feauture from the Theme you use? Which theme do you use?

    It has got something to do with Google PageSyndication, if I see it correctly.

    yes, I also think so. Try deactivating Google PageSyndication. Also, try changing the theme.

    Thread Starter iubforum

    (@iubforum)

    im using theme schemertype mag.

    Thread Starter iubforum

    (@iubforum)

    Thanks for the help! where would i go to turn it off? single post. php? do you guys see anything from this line of code?

    # Displays a list of popular posts
    function dp_popular_posts($num, $pre='<li>', $suf='</li>', $excerpt=false) {
    	global $wpdb;
    	$querystr = "SELECT $wpdb->posts.post_title, $wpdb->posts.ID, $wpdb->posts.post_content FROM $wpdb->posts WHERE $wpdb->posts.post_status = 'publish' AND $wpdb->posts.post_type = 'post' ORDER BY $wpdb->posts.comment_count DESC LIMIT $num";
    	$myposts = $wpdb->get_results($querystr, OBJECT);
    	foreach($myposts as $post) {
    		echo $pre;
    		?><a class="title" href="<?php echo get_permalink($post->ID); ?>"><?php echo $post->post_title ?></a><?php
    		if ($excerpt) {
    			dp_attachment_image($post->ID, 'medium', 'alt="'.$post->post_title.'"');
    			?><p><?php echo dp_clean($post->post_content, 85); ?>... <a href="<?php echo get_permalink($post->ID); ?>">Read More</a></p><?php
    		}
    		echo $suf;
    	}
    }
    Thread Starter iubforum

    (@iubforum)

    can anyone help out?

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Remove Related Links on WordPress 2.9.2’ is closed to new replies.