Wordpress获得帖子

时间:2013-02-08 14:26:03

标签: php wordpress

您好我正在尝试获取帖子内容并将其发布在我的index.php上。现在,没有任何东西会出现在这段代码中。

<?php 
$post = get_posts( array( 'name' => 'title' ) );
echo $post->post_title;
?>

2 个答案:

答案 0 :(得分:0)

你必须在循环中完成,这是一个来自codex的例子:

<ul>
<?php
global $post;
$args = array( 'numberposts' => 5, 'offset'=> 1, 'category' => 1 );
$myposts = get_posts( $args );
foreach( $myposts as $post ) :  setup_postdata($post); ?>
    <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ul>

答案 1 :(得分:0)

这是通过传递帖子ID

来获取帖子内容的方法

$content = get_post_field('post_content', $my_postid);

并获取帖子名称使用以下代码

echo $post->post_name;

希望这适合你。