如何在我的 WordPress 博客中获取 phpbb3 论坛名称和描述

发布于 2024-10-30 09:39:24 字数 1232 浏览 1 评论 0原文

我有一个与 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 phpbb3fourm 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

草莓酥 2024-11-06 09:39:24

对于您正在使用的小部件, $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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文