the_excerpt_export хук-фильтрWP 2.6.0

Filters the post excerpt used for WXR exports.

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

add_filter( 'the_excerpt_export', 'wp_kama_the_excerpt_export_filter' );

/**
 * Function for `the_excerpt_export` filter-hook.
 * 
 * @param string $post_excerpt Excerpt for the current post.
 *
 * @return string
 */
function wp_kama_the_excerpt_export_filter( $post_excerpt ){

	// filter...
	return $post_excerpt;
}
$post_excerpt(строка)
Excerpt for the current post.

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

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

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

export_wp()
the_excerpt_export
wp-admin/includes/export.php 623
$excerpt = wxr_cdata( apply_filters( 'the_excerpt_export', $post->post_excerpt ) );

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

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