コード例 #1
0
ファイル: stats.php プロジェクト: laiello/cartonbank
<dl role="main">
	<dt><?php 
_e('Registered Users');
?>
</dt>
	<dd><strong><?php 
total_users();
?>
</strong></dd>
	<dt><?php 
_e('Posts');
?>
</dt>
	<dd><strong><?php 
total_posts();
?>
</strong></dd>
</dl>

<?php 
if ($popular) {
    ?>
<h3><?php 
    _e('Most Popular Topics');
    ?>
</h3>
<ol>
<?php 
    foreach ($popular as $topic) {
        ?>
コード例 #2
0
ファイル: functions.php プロジェクト: anchorcms/anchor-cms
function total_articles()
{
    return total_posts();
}