我注意到Visual Studio代码中的类型(例如function bt_hide_from_guestes( $content ) {
global $post;
if ( $post->post_type == 'post' ) {
if ( !is_user_logged_in() ) {
$content = 'Please login to view this post';
}
}
return $content;
}
add_filter( 'the_content', 'bt_hide_from_guestes' );
和string
以及String
和number
以大写和小写形式存在。我还注意到,在调用本地javascript方法和属性时,区别很重要。
这有什么意义,默认情况下我应该使用哪个?