the_author_msn()WP 0.71

Устарела с версии 2.8.0. Больше не поддерживается и может быть удалена. Используйте the_author_meta().

Display the MSN address of the author of the current post.

Хуков нет.

Возвращает

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

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

the_author_msn();

Заметки

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

С версии 0.71 Введена.
Устарела с 2.8.0 Use the_author_meta()

Код the_author_msn() WP 6.4.3

function the_author_msn() {
	_deprecated_function( __FUNCTION__, '2.8.0', 'the_author_meta(\'msn\')' );
	the_author_meta('msn');
}