到目前为止no direct
有条件设置的方式content_width
.但我们可以使用template_redirect
钩住并更改全局content\\u宽度。这是在十四个主题中完成的。以下是代码。
/**
* Adjust content_width value for image attachment template.
*
* @since Twenty Fourteen 1.0
*/
function twentyfourteen_content_width() {
if ( is_attachment() && wp_attachment_is_image() ) {
$GLOBALS[\'content_width\'] = 810;
}
}
add_action( \'template_redirect\', \'twentyfourteen_content_width\' );