the_title_export хук-фильтрWP 5.7.0

Filters the post title used for WXR exports.

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

add_filter( 'the_title_export', 'wp_kama_the_title_export_filter' );

/**
 * Function for `the_title_export` filter-hook.
 * 
 * @param string $post_title Title of the current post.
 *
 * @return string
 */
function wp_kama_the_title_export_filter( $post_title ){

	// filter...
	return $post_title;
}
$post_title(строка)
Title of the current post.

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

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

Где вызывается хук

export_wp()
the_title_export
wp-admin/includes/export.php 605
$title = wxr_cdata( apply_filters( 'the_title_export', $post->post_title ) );

Где используется хук в WordPress

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