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 "";
}