在循环中,尝试以下操作:
<?php
if ( get_post_format() && in_array( get_post_format(), array( \'audio\', \'video\' ) ) ) {
// The current post has either the
// audio or video post format;
// enqueue a script
wp_enqueue_script( $handle, $src );
}
?>
既然WordPress可以处理内联脚本排队,这应该可以正常工作。