因为“标准”本身不是一种格式,它只是暗示has no formats.
。。。这有点欺骗性,因为它被列在格式元框中作为一种可供选择的格式
我认为“标准”很清楚地暗示了它的含义。如果您要创建的站点中的帖子从来都不是“标准”的,则返回默认设置:
if ( ! $format = get_post_format() )
$format = \'gallery\';
或者,钩住
wp_insert_post
如果尚未设置格式,则强制使用该格式。
function wpse_58121_set_default_format( $post_id ) {
if ( ! get_post_format( $post_id ) )
set_post_format( $post_id, \'gallery\' );
}