【问题标题】:Retrieve data from Wordpress for mobile version of the site从网站的移动版本的 Wordpress 中检索数据
【发布时间】:2013-06-29 01:41:08
【问题描述】:

我需要创建一个 Wordpress 网站的移动版本,但我不打算使用 Wordpress 来开发它(我想用纯 HTML/CSS/JS 从 JQuery Mobile 构建它)。

如何从 Wordpress 网络上的“博客”页面获取内容并将其显示在我的移动网站上? Wordpress 的移动版基本上是网站的一个非常简化的版本。如果我不清楚,请随时向我提问,谢谢!

【问题讨论】:

    标签: wordpress mobile


    【解决方案1】:
    <?php
    define('WP_USE_THEMES', false);
    require('../wp/wp-config.php');
    
    $id = 0; //Your ID here
    $post = get_page($id);
    $content = apply_filters('the_content', $post->post_content);
    echo $content;
    
    
    ?>
    

    为要检索的帖子分配 $id 变量。

    【讨论】:

      【解决方案2】:

      为什么不建立一个在任何地方都可以使用的响应式网站?

      【讨论】:

        猜你喜欢
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 2011-01-01
        相关资源
        最近更新 更多