Skip to content

Instantly share code, notes, and snippets.

@yhira
Last active February 23, 2019 14: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 yhira/27466eb5bbf7a8eabcbf13debd05a532 to your computer and use it in GitHub Desktop.
Save yhira/27466eb5bbf7a8eabcbf13debd05a532 to your computer and use it in GitHub Desktop.
コンテンツから移動しないスクリプトファイル条件を追記する
//本文中から移動しないスクリプトコード条件を追記する
add_filter('cocoon_exclude_script_movement_from_content', function($is_exclude, $script){
return $is_exclude || includes_string($script, 'tradingview_embed_options');
}, 10, 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment