有no hook available 在插件中。
一种解决方案是简单地复制这个Jetpack小部件并添加目标选项。
另一种是通过jQuery,在文件中/theme/functions.php
:
add_action( \'wp_enqueue_scripts\', \'jetpack_widget_wpse_88067\' );
function jetpack_widget_wpse_88067()
{
wp_enqueue_script(
\'jetpack-hack\',
get_stylesheet_directory_uri() . "/js/jethack.js",
array( \'jquery\'), // dependencies
false, // version
true // in footer
);
}
在文件中
/theme/js/jethack.js
:
jQuery(document).ready(function($) {
$(\'.jetpack-image-container a\').attr(\'target\',\'_blank\');
});