如何在我的 WordPress 博客中获取 phpbb3 论坛名称和描述
我有一个与 phpbb3 集成的 WordPress 博客。我想在我的 WordPress 博客索引页中显示 php bb3 论坛
的列表。 但我找不到任何帮助。如果有人帮助我,我将非常感谢你。 在我的 wordpress 索引页
上,它只显示 phpbb3
四个标题的标题,但我也需要描述。
中显示论坛主题
我正在使用此函数在我的 WordPress 博客file:custom-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');
I have a wordpress blog that is integrated with phpbb3.I want to show a listing of php bb3 forum
in my wordpress blog index page.
But i am not able to find any help.please help me if anybody.I shall be very thankful to you.
On my wordpress index page
it only showing title of phpbb3
fourm title but i need description also.
I am using this function to display forum topics
in my wordpress blog
file:custom-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');
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于您正在使用的小部件, $options 数组看起来不会返回除标题或最大帖子之外的任何内容。我认为您需要更新您的小部件以提取 FORUM_DESC 值,或者编写一个数据库调用以直接从数据库中提取该值
With the widget you're using it doesn't look like the $options array will ever return anything other than title or max posts. I think you'll need to update your widget to pull the FORUM_DESC value as well, or write a DB call to pull this directly from the database