73.gif

Search (advanced search)
Use this Search form before posting, asking or make a new thread.
Tips: Use Quotation mark to search words (eg. "How To Make Money Online")

07-17-2011, 10:15 AM
Post: #1
How to export all WP Posts + Title *Ready to Submit*
With this little code snippet, you can extract all posts from your wordpress blog with the title in an ready-to-blast format.

Instructions:

  1. copy code to notepad
  2. save as "extract-posts.php"
  3. upload to "/wp-content/" folder on your wordpress blog
  4. open "yoururl.com/wp-content/extract-posts.php" in your browser
  5. tadaaa, there you go, paste the lines in your favorite submitter tool
    • I created several versions of the code, chose the one which suits the best, if you need code for some submitter not listed below, just ask!

      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 rel="nofollow" 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; ?>
      Scrapebox 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; ?>
Bringing you the
LATEST and FRESH DOWNLOADS
Everyday!!! Love
>>> CLICK <<<
REVIEW and MIRRORS are much appreciated!!! Cool




78.gif