从 WordPress 获取帖子

发布于 2024-08-21 11:24:24 字数 243 浏览 4 评论 0原文

我有一个静态网站,我喜欢从我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

森林很绿却致人迷途 2024-08-28 11:24:24

这是我的最终措辞代码

<?php require('../mywebsite.com/wp-load.php'); 

function getmypost($number)
    {
        query_posts('p='.$number);
        while (have_posts()) : the_post();
        echo '<div class="post">';
        the_title('<h1>', '</h1>');
        the_content();
        echo '</div>';
        endwhile;
    }

Here is the final wordking code for me

<?php require('../mywebsite.com/wp-load.php'); 

function getmypost($number)
    {
        query_posts('p='.$number);
        while (have_posts()) : the_post();
        echo '<div class="post">';
        the_title('<h1>', '</h1>');
        the_content();
        echo '</div>';
        endwhile;
    }
烂柯人 2024-08-28 11:24:24

如果您只在自己的网站上使用您的工作代码,那么它就很棒。如果您经常在其他网站或插件中这样做,那么值得一读:
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/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文