根据id或永久链接检索wordpress中发布的博客内容

时间:2010-02-11 11:34:55

标签: blogs

我希望有人知道我的问题的答案。

如何根据 ID 永久链接检索wordpress中发布的博客内容?我需要API。

谢谢

1 个答案:

答案 0 :(得分:0)

Wordpress文档是您的朋友:get_post

e.g:

<?php
$my_id = 7;
$post = get_post($my_id); 
$content = $post->post_content;
?> 
相关问题