我有一个与phpbb3集成的wordpress博客。我想在我的wordpress博客索引页面中显示php bb3 forum
的列表。
但我无法找到任何帮助。请帮助我,如果有人的话。我将非常感谢你。
在我的wordpress index page
上,它仅显示phpbb3
四分之一标题的标题,但我也需要说明。
我正在使用此功能在我的wordpress博客中显示forum topics
文件:定制function.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');
答案 0 :(得分:0)
使用它的小部件看起来不像$ options数组将返回除标题或最大帖子之外的任何内容。我认为您还需要更新窗口小部件以获取FORUM_DESC值,或者编写数据库调用以直接从数据库中提取这个值