wp_remove_targeted_link_rel_filters()WP 5.1.0

Removes all filters modifying the rel attribute of targeted links.

Хуков нет.

Возвращает

null. Ничего (null).

Использование

wp_remove_targeted_link_rel_filters();

Список изменений

С версии 5.1.0 Введена.

Код wp_remove_targeted_link_rel_filters() WP 6.5.2

function wp_remove_targeted_link_rel_filters() {
	$filters = array(
		'title_save_pre',
		'content_save_pre',
		'excerpt_save_pre',
		'content_filtered_save_pre',
		'pre_comment_content',
		'pre_term_description',
		'pre_link_description',
		'pre_link_notes',
		'pre_user_description',
	);

	foreach ( $filters as $filter ) {
		remove_filter( $filter, 'wp_targeted_link_rel' );
	}
}