각 작성자 페이지 (사용자 정의 작성자 페이지 템플릿)의 온라인 상태 (온라인 / 오프라인)를 표시해야합니다.
is_user_logged_in ()은 현재 사용자에게만 적용되며 현재 저자를 대상으로하는 관련 방법을 찾을 수 없습니다. 예 : is_author_logged_in ()
어떤 아이디어?
대답
하나의 트릭 포니는 이전에 사용하지 않았던 과도를 사용하여 2 ~ 3 개의 함수에 대한 코딩을 준비하기에 충분히 친절했습니다.
http://codex.wordpress.org/Transients_API
functions.php에 이것을 추가하십시오 :
add_action('wp', 'update_online_users_status');
function update_online_users_status(){
if(is_user_logged_in()){
// get the online users list
if(($logged_in_users = get_transient('users_online')) === false) $logged_in_users = array();
$current_user = wp_get_current_user();
$current_user = $current_user->ID;
$current_time = current_time('timestamp');
if(!isset($logged_in_users[$current_user]) || ($logged_in_users[$current_user] < ($current_time - (15 * 60)))){
$logged_in_users[$current_user] = $current_time;
set_transient('users_online', $logged_in_users, 30 * 60);
}
}
}
이것을 author.php (또는 다른 페이지 템플릿)에 추가하십시오 :
function is_user_online($user_id) {
// get the online users list
$logged_in_users = get_transient('users_online');
// online, if (s)he is in the list and last activity was less than 15 minutes ago
return isset($logged_in_users[$user_id]) && ($logged_in_users[$user_id] > (current_time('timestamp') - (15 * 60)));
}
$passthis_id = $curauth->ID;
if(is_user_online($passthis_id)){
echo 'User is online.';}
else {
echo'User is not online.';}
두 번째 답변 (사용하지 않음)
이 답변은 참조 용으로 포함되어 있습니다. One Trick Pony가 지적했듯이 데이터베이스는 각 페이지로드마다 업데이트되기 때문에 바람직하지 않은 접근 방식입니다. 추가 조사 후 코드는 현재 작성자와 추가로 일치하는 것이 아니라 현재 사용자의 로그인 상태 만 감지하는 것 같습니다.
1)이 플러그인을 설치하십시오 : http://wordpress.org/extend/plugins/who-is-online/
2) 페이지 템플릿에 다음을 추가하십시오.
//Set the $curauth variable
if(isset($_GET['author_name'])) :
$curauth = get_userdatabylogin($author_name);
else :
$curauth = get_userdata(intval($author));
endif;
// Define the ID of whatever authors page is being viewed.
$authortemplate_id = $curauth->ID;
// Connect to database.
global $wpdb;
// Define table as variable.
$who_is_online_table = $wpdb->prefix . 'who_is_online';
// Query: Count the number of user_id's (plugin) that match the author id (author template page).
$onlinestatus_check = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM ".$who_is_online_table." WHERE user_id = '".$authortemplate_id."';" ) );
// If a match is found...
if ($onlinestatus_check == "1"){
echo "<p>User is <strong>online</strong> now!</p>";
}
else{
echo "<p>User is currently <strong>offline</strong>.</p>";
}