本文整理汇总了PHP中bbp_author_ip函数的典型用法代码示例。如果您正苦于以下问题:PHP bbp_author_ip函数的具体用法?PHP bbp_author_ip怎么用?PHP bbp_author_ip使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了bbp_author_ip函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: bbp_reply_class
bbp_reply_class();
?>
>
<td class="bbp-reply-author">
<?php
bbp_reply_author_link();
?>
<?php
if (is_super_admin()) {
?>
<div class="bbp-reply-ip"><?php
bbp_author_ip(bbp_get_reply_id());
?>
</div>
<?php
}
?>
</td>
<td class="bbp-reply-content">
<?php
bbp_reply_content();
?>
示例2: bbp_topic_author_link
?>
<?php
bbp_topic_author_link(array('sep' => '<br />', 'show_role' => true));
?>
<?php
if (bbp_is_user_keymaster()) {
?>
<?php
do_action('bbp_theme_before_topic_author_admin_details');
?>
<div class="bbp-topic-ip"><?php
bbp_author_ip(bbp_get_topic_id());
?>
</div>
<?php
do_action('bbp_theme_after_topic_author_admin_details');
?>
<?php
}
?>
<?php
do_action('bbp_theme_after_topic_author_details');
?>
示例3: test_bbp_get_author_ip
/**
* @covers ::bbp_author_ip
* @covers ::bbp_get_author_ip
*/
public function test_bbp_get_author_ip()
{
$t = $this->factory->topic->create();
$author_ip = '<span class="bbp-author-ip">(127.0.0.1)</span>';
// String.
$this->assertSame($author_ip, bbp_get_author_ip($t));
// Output.
$this->expectOutputString($author_ip);
bbp_author_ip($t);
}
示例4: add_author_post_date_count_ip
/**
* Add post date, author post count and author ip to the author element.
*/
public function add_author_post_date_count_ip()
{
?>
<div class="bbp-reply-post-date"><?php
bbp_reply_post_date(bbp_get_reply_id());
?>
</div>
<div class="bbps-post-count"><?php
printf(__('Post count: %s', 'Avada'), bbp_get_user_reply_count_raw(bbp_get_reply_author_id()) + bbp_get_user_topic_count_raw(bbp_get_reply_author_id()));
?>
</div>
<?php
if (bbp_is_user_keymaster()) {
?>
<?php
do_action('bbp_theme_before_topic_author_admin_details');
?>
<div class="bbp-reply-ip fusion-reply-id"><?php
bbp_author_ip(bbp_get_topic_id());
?>
</div>
<?php
do_action('bbp_theme_after_topic_author_admin_details');
?>
<?php
}
}
示例5: column_bbp_topic_reply_author
/**
* Output the contents of the `bbp_topic_reply_author` column
*
* @since 2.6.0 bbPress (r5886)
*/
public function column_bbp_topic_reply_author($item = '')
{
bbp_reply_author_avatar($item->ID, 50);
bbp_reply_author_display_name($item->ID);
echo '<br>';
bbp_reply_author_email($item->ID);
echo '<br>';
bbp_author_ip(array('post_id' => $item->ID));
}