用于oEmbed缓存的Ajax处理程序。
原型
wp_ajax_oembed_cache()
源文件
路径:wp-admin/includes/ajax-actions.php
<?php
...
function wp_ajax_oembed_cache() {
$GLOBALS['wp_embed']->cache_oembed( $_GET['post'] );
wp_die( 0 );
}
...
?>
其他
英文文档:https://developer.wordpress.org/reference/functions/wp_ajax_oembed_cache/