How to change wordpress post author name?

Sometimes we want to change wordpress posts author name, if you only need to change several posts, and you do not know the skills, you can delete and repost with the new author name. If you need to modify hundreds posts with the same author, how to do then? Continue reading “How to change wordpress post author name?”

How to display wordpress posts outside the blog?

For example, your main site is http://www.glassespeople.com ,and your blog is http://www.glassespeople.com/blog. If you want so 5 latest post description at www.glassespeople.com, how to do?

Simple, the following code will meet your needs:

// Include WordPress
define(‘WP_USE_THEMES’, false);
require(‘blog/wp-load.php’);
query_posts(‘showposts=5′);
?>

<?php while (have_posts()): the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_excerpt(); ?>
<p><a href=”<?php the_permalink(); ?>”>Read more…</a></p>
<?php endwhile; ?>

 copy the above code at the proper file, you can have a test also, save the code to test.php.