我有一个与 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');