这段代码有什么问题?

时间:2011-03-02 09:58:30

标签: php wordpress

function themeperauthor_need_switch() {
    global $post;
    if ( $get_post_type == 'weblogs' )  {
        return get_the_author_meta('themeperauthor', $user->ID);
    }
    return "";
}

它不会返回任何内容

1 个答案:

答案 0 :(得分:3)

get_post_type是一个函数而不是变量,$user对象也应该是全局的

function themeperauthor_need_switch() {
    global $post,$user;
    if ( get_post_type($post) == 'weblogs' )  {
       return get_the_author_meta('themeperauthor', $user->ID);
    }
  return "";
}