*oEmbed で表示されるhtmlを加工する
add_filter( 'oembed_dataparse', 'my_oembed' );
function my_oembed($html){
//global $post;
//WP_Embed::delete_oembed_caches($post->ID);
return "<div style=\"padding:0 10%\">$html</div>";
}
oEmbedキャッシュの更新
add_action( 'pre_post_update','my_oembed_cache_update' );
function my_oembed_cache_update(){
update_meta_cache();
}
oEmbedの停止
remove_filter( 'the_content', array( $GLOBALS['wp_embed'], 'autoembed' ), 8 );