0

我有一个与 phpbb3 集成的 wordpress 博客。我想php bb3 forum在我的 wordpress 博客索引页面中显示一个列表。但是我找不到任何帮助。如果有人请帮助我。我将非常感谢你。在我wordpress index page的它只显示四个标题的phpbb3标题,但我也需要描述。

我正在使用此功能forum topics在我的 wordpress 博客中显示

文件:自定义函数.php

    function widget_wpulatestphpbbtopics_custom($args)
         {
     if(!is_admin())
     {      
          //extract($args);
          $options = get_option('widget_wpulatestphpbbtopics');
         $title = $options['title'];
       //$maxEntries = $options['max'];
        //generate the widget output
        // wpu_template_funcs.php MUST be available!
if ( !function_exists('wpu_latest_phpbb_topics')) return false;
echo $before_widget;
echo"<h1>";echo $before_title . $title . $after_title;echo"</h1>";
echo '<ul class="wpulatesttopics">';
wpu_latest_phpbb_topics('limit='.$maxEntries);
echo '</ul>' . $after_widget;
}
}
       function limit_front_page()
         {
global $query_string;
if (is_home())
{
query_posts($query_string.'meta_key=featured_image');
widget_wpulatestphpbbtopics_custom($args);
}
     }
   add_action('thesis_hook_before_content', 'limit_front_page');  
4

1 回答 1

0

对于您正在使用的小部件,它看起来 $options 数组不会返回除了标题或最大帖子之外的任何内容。我认为你需要更新你的小部件以提取 FORUM_DESC 值,或者编写一个数据库调用来直接从数据库中提取它

于 2011-04-13T19:45:04.303 回答