當前位置: 首頁>>代碼示例>>PHP>>正文


PHP topic_class函數代碼示例

本文整理匯總了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">
開發者ID:achorg,項目名稱:DH-Answers,代碼行數:31,代碼來源:topic.php

示例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();
開發者ID:billerby,項目名稱:Surdeg,代碼行數:31,代碼來源:tag-single.php


注:本文中的topic_class函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。