1

我想写一个条件语句(下面用伪来解释)

IF current logged in user is 'Author' to a custom-post-type called 'farmers' {
// Do something
} else {
// Do something else
}

到目前为止,我的代码工作是

<?php
// Global variable for current user ID
$user_ID;

// Create a new WP query object           
$my_query = new WP_Query( array(
'post_type' => 'farmers',
'author' => $user_ID
));

// Get all the current user posts from the query object
$posts = $my_query->posts;

IF $posts = 0 {
// Do something
} else {
// Do Something else
} ?>

用户可以在系统中拥有“作者”角色,但不一定有任何帖子。所以我需要检查这个作者实际上有一个帖子的条件。我只是不确定如何在代码末尾编写该 IF 语句并寻求帮助。

谢谢

4

3 回答 3

0

你可以试试这个方法...

   if($user_session_id == $author_id) {
    // Do something
    } else {
    // Do something else
    }
于 2012-10-04T11:44:59.543 回答
0

对于任何想要查看特定帖子的人,您可以检查是否

get_current_user_id() == get_post($your_post_id)->post_author

或者在 WordPress 循环中,您可以检查是否

get_current_user_id() == $post->post_author

为了完整起见,以下回答了原始问题。这将检查当前用户是否是属于自定义帖子类型的任何帖子的作者;在这种情况下farmers

$my_query = new WP_Query( array(
  'post_type' => 'farmers',
  'author' => get_current_user_id()
));

if ( $my_query->have_posts() ) {
  // Do something
} else {
  // Do Something else
}
于 2018-10-21T00:25:14.170 回答
-1

使用这样的东西

$query="select * from posts where type='farmers'";
$result=mysql_query($query);
$valid=false;
if(mysql_num_rows($result)>0){
$valid=true;
}


if($_SESSION["id"]==$posts["id"]){
//your code
}else{
//your code
}

或者

if(mysql_num_rows($posts)>0){
// user have post
 }
于 2012-10-04T11:42:37.867 回答