dbx_post_advanced

dbx_post_advanced

Hook Type: action
See hook in action

See hook in core

Displaying hooks found in version: wordpress-5.3.2

do_action('dbx_post_advanced') is found 1 times:

  • /wp-admin/includes/meta-boxes.php line 1511
    1507
    1508
    1509
    1510
    1511
    1512
    1513
    1514
    1515
    1516
    1517
    * @deprecated 3.7.0 Use 'add_meta_boxes' instead.
     *
     * @param WP_Post $post Post object.
     */
    do_action( 'dbx_post_advanced', $post );
     
    // Allow the Discussion meta box to show up if the post type supports comments,
    // or if comments or pings are open.
    if ( comments_open( $post ) || pings_open( $post ) || post_type_supports( $post_type, 'comments' ) ) {
        add_meta_box( 'commentstatusdiv', __( 'Discussion' ), 'post_comment_status_meta_box', null, 'normal', 'core', array( '__back_compat_meta_box' => true ) );
    }

See this hook used in plugins: