ワードプレス・スクールの生徒さんからのご要望に備えて、、、フィルターを準備中
display posts shortcodeワードプレス・プラグインで生成されるリンクのターゲットを変更します。
/**
* Links in New Window
*
*/
function be_links_in_new_window( $output ) {
return str_replace( '<a ', '<a target="_blank" ', $output );
}
add_filter( 'display_posts_shortcode_output', 'be_links_in_new_window', 20 );
functions.phpに追加する。