本文整理汇总了PHP中topic_class函数的典型用法代码示例。如果您正苦于以下问题:PHP topic_class函数的具体用法?PHP topic_class怎么用?PHP topic_class使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了topic_class函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: bb_option
"><?php
bb_option('name');
?>
</a><?php
bb_forum_bread_crumb();
?>
</div>
<div class="infobox" role="main">
<div id="topic-info">
<span id="topic_labels"><?php
bb_topic_labels();
?>
</span>
<h2<?php
topic_class('topictitle');
?>
><?php
topic_title();
?>
</h2>
<span id="topic_posts">(<?php
topic_posts_link();
?>
)</span>
<span id="topic_voices">(<?php
printf(_n('%s voice', '%s voices', bb_get_topic_voices()), bb_get_topic_voices());
?>
)</span>
<ul class="topicmeta">
示例2: _e
</th>
<th><?php
_e('Last Poster');
?>
</th>
<th><?php
_e('Freshness');
?>
</th>
</tr>
<?php
foreach ($topics as $topic) {
?>
<tr<?php
topic_class();
?>
>
<td><a href="<?php
topic_link();
?>
"><?php
topic_title();
?>
</a></td>
<td class="num"><?php
topic_posts();
?>
</td>
<td class="num"><?php
topic_last_poster();