Có vẻ chúng tôi không thể tìm nội dung bạn đang mong muốn. Có lẽ công cụ tìm kiếm có thể giúp bạn.
HỖ TRỢ
add_filter( 'wp_list_categories', 'custom_list_categories' );
function custom_list_categories( $output ) {
$output = str_replace( '<a', '<a target="_self"', $output );
return $output;
}