no-image

WordPress:ブロックエディタの最近の投稿画像をリンクにするfunctions.php

function wpb_autolink_featured_images( $html, $post_id, $post_image_id ) {
$html = '<a href="' . get_permalink( $post_id ) . '" title="' . esc_attr( get_the_title( $post_id ) ) . '">' . $html . '</a>';
return $html;
}
add_filter( 'post_thumbnail_html', 'wpb_autolink_featured_images', 10, 3 );

Leave a Comment

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です