如何给 bbPress 论坛添加版块图标 (缩略图)

标签: 

正在查看 3 个帖子:1-3 (共 3 个帖子)
  • 作者
    帖子
  • yixiaochao
    • 文章数量: 2
    @yixiaochao
    楼主

    如果在板块前面加图标,缩略图呢?

    诗语
    管理员
    • 文章数量: 5,925
    @feibisi

    放到主题和子主题里面,尺寸自己改 ID,array(48,48)

    add_post_type_support('forum', array('thumbnail'));
    function ks_forum_icons() {
    	if ( 'forum' == get_post_type() ) {
    		global $post;
    	    if ( has_post_thumbnail($post->ID) )
    			echo '<a href="' . get_permalink( $_post->ID ) . '" title="' . get_the_title( $_post->ID ) . '">';
    	    	echo get_the_post_thumbnail($post->ID,array(48,48),array('class' => 'alignleft forum-icon'));
    			echo '</a>';	 }
    }
    add_action('bbp_theme_before_forum_title','ks_forum_icons');
    seorapheal
    参与者
    • 文章数量: 21
    @seorapheal
    此回复已被标记为私有,🔒 仅楼主及管理员可见。
正在查看 3 个帖子:1-3 (共 3 个帖子)
  • 哎呀,回复话题必需登录。

话题信息

  • 当前位于:bbPress
  • 2 条回复
  • 3 个参与人
  • 最后回复:<a href="https://bbs.weixiaoduo.com/users/seorapheal/" title=" 查看 seorapheal 的个人资料" class="bbp-author-link"><span class="bbp-author-name">seorapheal</span></a>
  • 上次活动:<a href="https://bbs.weixiaoduo.com/topic/28068/#post-36322" title=" 回复至:如何给 bbPress 论坛添加版块图标 (缩略图)">4 年、 8 月前</a>