wpseo_publishbox_misc_actions хук-событиеYoast 1.0

Fires after the post time/date setting in the Publish meta box.

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

add_action( 'wpseo_publishbox_misc_actions', 'wp_kama_wpseo_publishbox_misc_actions_action' );

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

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

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

WPSEO_Admin_Init::add_publish_box_section()
wpseo_publishbox_misc_actions
yoast/admin/class-admin-init.php 376
do_action( 'wpseo_publishbox_misc_actions', $post );

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

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