本文整理汇总了PHP中bp_the_topic_time_since_last_post函数的典型用法代码示例。如果您正苦于以下问题:PHP bp_the_topic_time_since_last_post函数的具体用法?PHP bp_the_topic_time_since_last_post怎么用?PHP bp_the_topic_time_since_last_post使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了bp_the_topic_time_since_last_post函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: bp_the_topic_title
" title="<?php
bp_the_topic_title();
?>
- <?php
_e('Permalink', 'buddypress');
?>
"><?php
bp_the_topic_title();
?>
</a>
<span class="small">- <?php
bp_the_topic_total_post_count();
?>
</span>
<p><span class="activity"><?php
echo sprintf(__('updated %s ago', 'buddypress'), bp_the_topic_time_since_last_post(false));
?>
</span></p>
<div class="latest-post">
<?php
_e('Latest by', 'buddypress');
?>
<?php
bp_the_topic_last_poster_name();
?>
:
<?php
bp_the_topic_latest_post_excerpt();
?>
</div>
示例2: bp_the_topic_total_posts
</span>
<?php
}
?>
</p>
</td>
<td class="td-postcount">
<?php
bp_the_topic_total_posts();
?>
</td>
<td class="td-freshness">
<span class="time-since"><?php
bp_the_topic_time_since_last_post();
?>
</span>
<p class="topic-meta">
<span class="freshness-author">
<a href="<?php
bp_the_topic_permalink();
?>
"><?php
bp_the_topic_last_poster_avatar('type=thumb&width=20&height=20');
?>
</a>
<?php
bp_the_topic_last_poster_name();
?>
</span>
示例3: bp_group_active_forum_topics
function bp_group_active_forum_topics($total_topics = 3, $group = false)
{
global $groups_template, $forum_template;
if (!$group) {
$group =& $groups_template->group;
}
$forum_id = groups_get_groupmeta($group->id, 'forum_id');
if ($forum_id && $forum_id != '') {
if (function_exists('bp_forums_setup')) {
$latest_topics = bp_forums_get_topics($forum_id, $total_topics, 1);
if ($latest_topics) {
?>
<ul class="item-list" id="recent-forum-topics"><?php
$counter = 0;
foreach ($latest_topics as $topic) {
$alt = $counter % 2 == 1 ? ' class="alt"' : '';
$forum_template->topic = (object) $topic;
?>
<li<?php
echo $alt;
?>
>
<div class="avatar">
<?php
bp_the_topic_poster_avatar();
?>
</div>
<a href="<?php
bp_the_topic_permalink();
?>
" title="<?php
bp_the_topic_title();
?>
- <?php
_e('Permalink', 'buddypress');
?>
"><?php
bp_the_topic_title();
?>
</a>
<span class="small">- <?php
bp_the_topic_total_post_count();
?>
</span>
<p><span class="activity"><?php
echo sprintf(__('updated %s ago', 'buddypress'), bp_the_topic_time_since_last_post(false));
?>
</span></p>
<div class="latest-post">
<?php
_e('Latest by', 'buddypress');
?>
<?php
bp_the_topic_last_poster_name();
?>
:
<?php
bp_the_topic_latest_post_excerpt();
?>
</div>
</li>
<?php
$counter++;
?>
<?php
}
?>
</ul>
<?php
} else {
?>
<div id="message" class="info">
<p><?php
_e('There are no active forum topics for this group', 'buddypress');
?>
</p>
</div>
<?php
}
}
}
}