Skip to content

Instantly share code, notes, and snippets.

@hideokamoto
Created July 18, 2019 04:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hideokamoto/85c6d8e1eede85c12410739d1accfaea to your computer and use it in GitHub Desktop.
Save hideokamoto/85c6d8e1eede85c12410739d1accfaea to your computer and use it in GitHub Desktop.
WPでもろもろ使ってるパッチ的なもの
<?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