How to run the loop outside of WordPress
If you need to access your WordPress content and need to run a loop OUTSIDE of your WORDPRESS install? The following code snippet can allow you to run a WordPress loop on any PHP file, or even outside of your WordPress install.
So just paste the following code on any PHP file where you want to run your WordPress loop for accessing data. So for this you need to modify the following:
line 4: Please specify the path to your WordPress wp-blog-header.php file.
line 5: Query posts using the query_posts() function.
<?php
// Include WordPress
define('WP_USE_THEMES', false);
require('/server/path/to/your/wordpress/site/htdocs/blog/wp-blog-header.php');
query_posts('posts_per_page=1');
?>
<?php while (have_posts()): the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_excerpt(); ?>
<p><a href="<?php the_permalink(); ?>" class="red">Read more...</a></p>
<?php endwhile; ?>
If you need to access your WordPress content and need to run a loop OUTSIDE of your WORDPRESS install? The following code snippet can allow you to run a WordPress loop on any PHP file, or even outside of your WordPress install.
So just paste the following code on any PHP file where you want to run your WordPress loop for accessing data. So for this you need to modify the following:
line 4: Please specify the path to your WordPress wp-blog-header.php file.
line 5: Query posts using the query_posts() function.
<?php
// Include WordPress
define('WP_USE_THEMES', false);
require('/server/path/to/your/wordpress/site/htdocs/blog/wp-blog-header.php');
query_posts('posts_per_page=1');
?>
<?php while (have_posts()): the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_excerpt(); ?>
<p><a href="<?php the_permalink(); ?>" class="red">Read more...</a></p>
<?php endwhile; ?>
No comments:
Post a Comment