मुझे प्रत्येक लेखक पृष्ठ (कस्टम लेखक पृष्ठ टेम्पलेट) के लिए ऑनलाइन स्थिति (ऑनलाइन / ऑफ़लाइन) प्रदर्शित करने की आवश्यकता है।
is_user_logged_in () केवल वर्तमान उपयोगकर्ता पर लागू होता है और मुझे वर्तमान लेखक को लक्षित करने वाला एक प्रासंगिक दृष्टिकोण नहीं मिल सकता है, जैसे is_author_logged_in ()
कोई विचार?
उत्तर
एक ट्रिक टट्टे का उपयोग करने के लिए पर्याप्त था, दो से तीन कार्यों के लिए कोडिंग तैयार करने के लिए, कुछ ऐसा जो मैंने पहले इस्तेमाल नहीं किया था।
http://codex.wordpress.org/Transients_API
इसे कार्यों में जोड़ें।
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.';}
दूसरा उत्तर (उपयोग न करें)
यह उत्तर संदर्भ के लिए शामिल है। जैसा कि वन ट्रिक पोनी द्वारा बताया गया है, यह अवांछनीय दृष्टिकोण है क्योंकि डेटाबेस प्रत्येक पृष्ठ लोड पर अपडेट किया जाता है। आगे की जांच के बाद कोड केवल वर्तमान उपयोगकर्ता के लॉग-इन स्थिति का पता लगाने के बजाय वर्तमान लेखक के साथ मिलान करने के लिए लग रहा था।
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>";
}