尝试获取一个简单的插件并在我的第一步中出错..
<?php
/*
Plugin Name:!test
*/
require_once(includes_url() . '/pluggable.php');
function is_user_logged_in() {
$user = wp_get_current_user();
return $user->exists();
}
echo is_user_logged_in();
?>
答案 0 :(得分:1)
您无法直接在插件文件中调用函数。而不是它,在钩子内调用它,例如:
function my_shortcode_func( $atts ) {
$user = wp_get_current_user();
return $user->exists();
}
add_shortcode( 'my_shortcode', 'my_shortcode_func' );