我想从所有中删除网站urlthe_post_thumbnail()
因此,它们成为相对的,并从输出中删除/添加属性。
到目前为止,我在函数中添加了以下代码。php的主题,除了我不知道如何修改缩略图$html
第二部分。
非常感谢您的帮助
add_filter( \'post_thumbnail_html\', \'my_post_image_html\', 10, 3 );
function my_post_image_html( $html, $post_id, $post_image_id, $size ) {
// Create relative url using pars_url in php
$relURL = wp_get_attachment_url( $post_id ); // Get Post thumbnail Src instead of permalink
$relURL = parse_url( $relURL );
$relURL = $relURL[\'path\'];
//Pass the relURL to post_thumbnail_html modify the src attribute
$html = \'<a href="\' . get_permalink( $post_id ) . \'" title="\' . esc_attr( get_post_field( \'post_title\', $post_id ) ) . \'">\' . $html . $imgsrc .$post_id . \'</a>\';
return $html;
}