magicmastermind
Registered Member
- Sep 11, 2010
- 73
- 27
I wrote this little code snippet, you can extract all posts from your wordpress blog with the title in an ready-to-blast format.
You just export all your posts from your wordpress blog and then you put them in to scrapebox and blast whatever XXk comments out with your deeplinks+title in it.
Normally, you just point backlinks to your main page url.com but if you get deeplinks to url.com/abc/xyz with some relevant anchor, these pages will rank better too, your whole site appears much more natural to fu*king G and you can get some traffic trough longtail keywords from within you post titles !
e.g.
Instructions:
Standard Link Code: <a href="URL">TITLE</a>
Advanced Links SickSubmitter Code URL##{TITLE}
Scrapebox Code URL {TITLE}
You just export all your posts from your wordpress blog and then you put them in to scrapebox and blast whatever XXk comments out with your deeplinks+title in it.
Normally, you just point backlinks to your main page url.com but if you get deeplinks to url.com/abc/xyz with some relevant anchor, these pages will rank better too, your whole site appears much more natural to fu*king G and you can get some traffic trough longtail keywords from within you post titles !
e.g.
Code:
http://www.mydomain.com/blog/my-post.html {My Post Title}
- copy code to notepad
- save as "extract-posts.php"
- upload to "/wp-content/" folder on your wordpress blog
- open "yoururl.com/wp-content/extract-posts.php" in your browser
- tadaaa, there you go, paste the lines in your favorite submitter tool and blast the shit
Standard Link Code: <a href="URL">TITLE</a>
Code:
<?php
require_once('../wp-blog-header.php');
query_posts('&showposts=-1&order=ASC');
while (have_posts()) : the_post(); ?>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<br />
<?php endwhile; ?>
Advanced Links SickSubmitter Code URL##{TITLE}
Code:
<?php
require_once('../wp-blog-header.php');
query_posts('&showposts=-1&order=ASC');
while (have_posts()) : the_post(); ?>
<?php the_permalink(); ?>##{<?php the_title(); ?>}
<br />
<?php endwhile; ?>
Code:
<?php
require_once('../wp-blog-header.php');
query_posts('&showposts=-1&order=ASC');
while (have_posts()) : the_post(); ?>
<?php the_permalink(); ?> {<?php the_title(); ?>}
<br />
<?php endwhile; ?>
Last edited: