Do you need a list of links to all the posts of your Wordpress site?
This will come in handy when you want to do linking to posts within your own network, want to post comments on your own blogs using ScrapeBox on your own blogs linking to your other sites, etc. etc.
Open notepad or any other text editor and paste the following code inside:
Save the file with any name you want, we'll use postlinks.php in this example, but make sure it has the .php extension. Upload this file to your /wp-content/ folder.
Now in your favorite browser bring up http://www.yoursite.com/wp-content/postlinks.php
This will return your links in this format:
http://www.yoursite.com/link-to-post | Name of your post | Tags
If you only need the link take out the code for the_title and the_tags as well as the delimiter.
Now you can use this list for whatever you want.
This will come in handy when you want to do linking to posts within your own network, want to post comments on your own blogs using ScrapeBox on your own blogs linking to your other sites, etc. etc.
Open notepad or any other text editor and paste the following code inside:
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(); ?>|<?php the_tags(); ?>
<br />
<?php endwhile; ?>
Now in your favorite browser bring up http://www.yoursite.com/wp-content/postlinks.php
This will return your links in this format:
http://www.yoursite.com/link-to-post | Name of your post | Tags
If you only need the link take out the code for the_title and the_tags as well as the delimiter.
Now you can use this list for whatever you want.