子比论坛Mini模式下标题自动获取并显示标签,给发布的帖子添加标签显示能让用户更直观的了解帖子的相关内容,进而增加用户的点击率和浏览量,也提升了用户体验与论坛美观度。有兴趣的朋友可以自行测试一下。
默认电脑版显示三个标签,如果有多个隐藏,鼠标放到标签抽屉效果拉出全部展示
手机版默认显示两个
现在是mini帖子模式才会显示,如果你不是mini模式自己添加
可以自行修改js CSS来适配自己想要的动画和样式
随机标签颜色,每次加载都不同
使用教程
1.文件路径: /wp-content/themes/zibll/inc/functions/bbs/inc/posts.php
搜索 $title = zib_bbs_get_posts_lists_title(‘forum-title flex ac’, ‘text-ellipsis’, $show_topping, true); 替换为下方代码。
$term_links = zib_bbs_get_posts_tag_link($post->ID, 'liuke-biaoqian');
$term_html = '';
if ($term_links) {
$term_html .= '<div class="tag-wrapper">';
$term_html .= '<div class="tag-container">' . $term_links . '</div>';
$term_html .= '</div>';
}
$title = zib_bbs_get_posts_lists_title('forum-title flex ac', 'text-ellipsis', $show_topping, true);
$title = preg_replace('/(<a.*?class=".*?text-ellipsis.*?".*?>.*?<\/a>)/', '$1' . $term_html, $title, 1);
// $title = zib_bbs_get_posts_lists_title('forum-title flex ac', 'text-ellipsis', $show_topping, true);
© 版权声明
THE END
暂无评论内容