$content_width の動的な変更@WordPress

$content_widthを、テンプレート等の条件によって変更したい時には、template_redirect フックを使うといいらしい

<?php 
if ( ! isset( $content_width ) )
	$content_width= 640;

function mytheme_adjust_content_width() {
	global $content_width;

	if ( is_page_template( 'full-width.php' ) )
		$content_width= 780;
}
add_action( 'template_redirect', 'mytheme_adjust_content_width' );
?>

Relate hooks

[emulsion_relate_posts]