从 WordPress 获取帖子
我有一个静态网站,我喜欢从我的 200 篇 WordPress 帖子中获取一些(+ 或 - 15)帖子,并将其放入静态网站中,其设计和内容与
我获得的代码完全不同的博客:
<?php
$my_id = 1828;
$post_id = get_post($my_id);
echo $post_id;
?>
但如何分辨博客的地址,以及如何从帖子 1828 获取数据库文本
I have a static website, and i like to take some (+ or - 15) post from my 200 post wordpress and get it in a static website with design and thing really different from the blog
i have get that code :
<?php
$my_id = 1828;
$post_id = get_post($my_id);
echo $post_id;
?>
but how to tell the address of the blog, and how to get the database texte from post 1828
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是我的最终措辞代码
Here is the final wordking code for me
如果您只在自己的网站上使用您的工作代码,那么它就很棒。如果您经常在其他网站或插件中这样做,那么值得一读:
http://ottodestruct.com/blog/2010/dont-include -wp-加载-请/
Your working code is great if you only use it on your own site. If you do it often and on other sites or in plugins, this is worth a read:
http://ottodestruct.com/blog/2010/dont-include-wp-load-please/