大家
我的网站在WordPress中,在我的网站中,我创建了一个论坛页面供用户讨论使用WordPress默认评论表单。
在我的评论表单中,我还希望显示评论员的状态,以便使用简单的文字 [在线/离线]
检查其是在线还是离线现在我正在使用下面给出的代码
<div class=skyblue></br>
<?php if ( 0 != $args['avatar_size'] ) echo get_avatar( $comment, $args['avatar_size'] ); ?>
<font color=red size=5><?php printf( __( '<cite >%s</cite> ' ), get_comment_author_link() ); ?></font>
<div align=right><?php
$user_id = get_comment(get_comment_ID())->user_id;
if ($user_id)
{
$user_info = get_userdata($user_id );
{
echo 'Online';
} else {
echo 'Offline';
}
} ?></div>
<div align="left"><a href="<?php echo esc_url( get_comment_link( $comment->comment_ID, $args ) ); ?>">
<?php
/* translators: 1: date, 2: time */
printf( __( '%1$s at %2$s' ), get_comment_date(), get_comment_time() ); ?></a><?php edit_comment_link( __( '(Edit)' ), ' ', '' );
?><br>
</br></div></div>
above image show how commentator status looks like
任何人都可以帮助我在wordpress中显示评论员的状态