My SEO Technique (best way to get Backlink)

7 replies
  • SEO
  • |
Hi
I want to tell you one of my SEO techniques.
This technique is tested on several sites and I was successful.
However, these techniques for WordPress sites.

About this technique:
In fact, this is a great way to get Backlinks for the site.
Using this method, one or more Backlinks to be selected randomly.

To get started:
Upload the following PHP file on your host (the current theme folder):
Download page

Second step:
In Wordpress, Add New Page, and write Permalink "rndrss".
Example: www.mysite.com/rndrss
And, in the Page Attributes > Template, choose "RandomRss".
Finally, click "Publish" button.

Third step:
You should get a Backlink using the code below:
PHP Code:
<?php include_once(ABSPATH WPINC '/rss.php'); $rss fetch_rss('www.mysite.com/rndrss/'); $maxitems 10// Total Link $items = array_slice($rss->items, 0, $maxitems); ?> <?php if (empty($items)) echo '<li>Link Not Found</li>'; else foreach ( $items as $item ) : ?> <li><a href='<?php echo $item['link']; ?>' title='<?php echo $item['title']; ?>' target="_blank"> <?php echo $item['title']; ?> </a></li> <?php endforeach; ?>
Note: Instead of "www.mysite.com/rndrss" write your website address.

In my opinion, the best place to insert this code, below post of the site. (Single page)

What do you think about this method?
#backlink #php #seo #seo techniques #wordpress
  • Profile picture of the author markowe
    All the code does is list the recent post titles/links from your rss feed - so they are not backlinks, it's just improving the internal linking on your site, which isn't a bad thing of course. But there are plugins to do this, saves you messing around with code.

    Also, I didn't understand why the line beginning with "array_slice" is commented out - I don't think there is any point to that line, unless you want to change the '0' to, say 5, to skip the 5 most recent posts.

    Anyway, just get a plugin, surely..?
    Signature

    Who says you can't earn money as an eBay affiliate any more? My stats say otherwise

    {{ DiscussionBoard.errors[8375236].message }}
  • Profile picture of the author nitesh
    How will this code build backlinks?
    Signature

    Are you in need of Best Video Production Services? 2D and 3d Animation specializes in all types of Video Creation Services such as 2D and 3D Animated Explainer Videos, Typography Videos, Whiteboard Videos, and Instructional Videos.

    {{ DiscussionBoard.errors[8375296].message }}
  • Profile picture of the author seekdefo
    Truth be told did not understand much of your post, does this fetch backlinks or goes and builds them
    Signature

    Brevity is the soul of wit

    {{ DiscussionBoard.errors[8375934].message }}
  • Profile picture of the author afgwarrior
    why not add a widget with recent posts in footer or in the sidebar ? I wonder
    {{ DiscussionBoard.errors[8376317].message }}
  • Profile picture of the author EduCom
    What technique is this?
    {{ DiscussionBoard.errors[8376627].message }}
    • Profile picture of the author aberrant
      This isn't a backlink technique, just another common case of ignorance. It's the equivalent of a sitemap. It will do nothing to help you get backlinks.
      {{ DiscussionBoard.errors[8376676].message }}
  • Profile picture of the author Chang47
    Not completely sure what it does, but it looks like it posts your RSS feeds into a designated page on your Wordpress installation? I'm guessing this will help you index your newest post faster?
    {{ DiscussionBoard.errors[8376818].message }}

Trending Topics