Created
July 18, 2019 04:01
-
-
Save hideokamoto/85c6d8e1eede85c12410739d1accfaea to your computer and use it in GitHub Desktop.
WPでもろもろ使ってるパッチ的なもの
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// 存在しなくなったone-column-fluidをロードしようとしているときのフォールバック | |
add_filter( | |
'inc2734_wp_view_controller_layout', | |
function( $layout ) { | |
if ( 'one-column-fluid' === $layout ) { | |
$layout = 'one-column'; | |
} | |
return $layout; | |
} | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment