2014-02-07 66 views
0

我必须开发一个WordPress网站的Android本地应用程序,其中只有5-6个典型页面,这些页面很少随时间变化。该网站没有新闻栏目,评论栏目和其他经常更新的栏目。Wordpress页面Feed没有显示

http://multichoicesocial.com

所以,我希望建立一个应用程序,它会解析RSS提要简单解析内容,并显示在应用程序中。

我的第一个问题是 - 我的决定是否最好?或者有更好的决定?即JSON API插件和解析,XML-RPC或任何其他

对于RSS订阅源,我在http://multichoicesocial.com/twitter/feed/寻求链接。没问题,链接显示RSS但页面内容没有显示,而不是一些其他的文字。我还与其他网页(http://multichoicesocial.com/page_name/feed/)试图让RSS像

  1. http://multichoicesocial.com/twitter/feed/
  2. http://multichoicesocial.com/facebook-customization/feed/
  3. http://multichoicesocial.com/about-us/

但不是显示的页面内容,所有这些都显示出一些虚拟内容。

由于WordPress的网站是不是由我开发的,我看到了page.php得到任何故障可能阻止它正确呈现RSS提要:

<div id="content"> 

    <?php themeblvd_breadcrumbs(); ?> 

    <?php the_post(); ?> 

    <?php if($themeblvd_theme_hints == 'true') : ?> 
     <?php echo themeblvd_theme_hints('page'); ?> 
    <?php endif; ?> 

    <?php if(get_post_meta($post->ID, 'themeblvd_pagetitle', true) != 'false') : ?> 
    <h1><?php the_title(); ?></h1> 
    <?php endif; ?> 

    <div class="page"> 

     <div class="top"><!-- --></div> 

     <?php the_content(); ?> 

     <?php edit_post_link(__('Edit Page', 'themeblvd'), '<p>', '</p>'); ?> 

     <div class="clear"></div> 

     <div class="bottom"><!-- --></div> 

    </div><!-- .page (end) --> 

</div><!-- #content (end) --> 

<?php if($themeblvd_sidebar == 'right') : ?> 
    <?php get_sidebar(); ?> 
<?php endif; ?> 

<?php get_footer(); ?> 

但一无所获问题。这是怎么回事?提前致谢。

回答

0

好的,我安装了WordPress JQuery API插件并设法查看供稿。 :)

相关问题