page_attributes_misc_attributes хук-событиеWP 4.9.0

Fires before the help hint text in the 'Page Attributes' meta box.

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

add_action( 'page_attributes_misc_attributes', 'wp_kama_page_attributes_misc_action' );

/**
 * Function for `page_attributes_misc_attributes` action-hook.
 * 
 * @param WP_Post $post The current post.
 *
 * @return void
 */
function wp_kama_page_attributes_misc_action( $post ){

	// action...
}
$post(WP_Post)
The current post.

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

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

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

page_attributes_meta_box()
page_attributes_misc_attributes
wp-admin/includes/meta-boxes.php 1080
do_action( 'page_attributes_misc_attributes', $post );

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

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