add_field( array( 'id' => 'rank_math_serp_preview', 'type' => 'raw', 'file' => rank_math()->includes_dir() . 'metaboxes/serp-preview.php', ) ); $cmb->add_field( array( 'id' => 'rank_math_title', 'type' => 'text', 'desc' => esc_html__( 'This is what will appear in the first line when this post shows up in the search results.', 'rank-math' ), 'classes' => 'rank-math-supports-variables', 'sanitization_cb' => [ '\RankMath\CMB2', 'sanitize_textfield' ], 'attributes' => array( 'class' => 'regular-text wp-exclude-emoji', 'data-gramm_editor' => 'false', ), ) ); $cmb->add_field( array( 'id' => 'rank_math_permalink', 'type' => 'text', 'desc' => esc_html__( 'This is the unique URL of this page, displayed below the post title in the search results.', 'rank-math' ), ) ); $cmb->add_field( array( 'id' => 'rank_math_description', 'type' => 'textarea', 'desc' => esc_html__( 'This is what will appear as the description when this post shows up in the search results.', 'rank-math' ), 'classes' => 'rank-math-supports-variables', 'sanitization_cb' => true, 'attributes' => array( 'class' => 'cmb2_textarea wp-exclude-emoji', 'rows' => 2, 'data-autoresize' => true, 'data-gramm_editor' => 'false', ), ) ); $cmb->add_field( array( 'id' => 'rank_math_focus_keyword', 'type' => 'text', 'name' => esc_html__( 'Focus Keyword', 'rank-math' ), /* translators: Link to kb article */ 'desc' => sprintf( wp_kses_post( __( 'Insert keywords you want to rank for. Try to attain 100/100 points for better chances of ranking.', 'rank-math' ) ), \RankMath\KB::get( 'score-100' ) ), 'classes' => 'nob', 'after_field' => Helper::is_site_connected() ? '' : '

' . sprintf( /* translators: link to connect page. */ __( 'Get keyword suggestions from Google & optimize upto 5 Focus Keywords by linking your Rank Math account.', 'rank-math' ), Helper::get_connect_url() ) . '

', 'attributes' => array( 'placeholder' => esc_html__( 'Example: Rank Math SEO', 'rank-math' ), ), ) ); if ( ! Admin_Helper::is_term_profile_page() ) { $cmb->add_field( array( 'id' => 'rank_math_pillar_content', 'type' => 'checkbox', 'name' => ' ', 'classes' => 'nob nopt', 'desc' => '' . esc_html__( 'This post is a Pillar Content', 'rank-math' ) . '' . Admin_Helper::get_tooltip( esc_html__( 'Select one or more Pillar Content posts for each post tag or category to show them in the Link Suggestions meta box.', 'rank-math' ) ), ) ); } if ( Helper::has_cap( 'onpage_analysis' ) ) { $cmb->add_field( array( 'id' => 'rank_math_serp_checklist', 'type' => 'raw', 'file' => rank_math()->includes_dir() . 'metaboxes/serp-checklist.php', ) ); } // Primary Category. /** * Filter: Allow disabling the primary term feature. * * @param bool $return True to disable. */ if ( false === $this->do_filter( 'primary_term', false ) ) { $taxonomies = Helper::get_object_taxonomies( WordPress::get_post_type(), 'objects' ); $taxonomies = wp_filter_object_list( $taxonomies, array( 'hierarchical' => true ), 'and', 'name' ); foreach ( $taxonomies as $taxonomy ) { $cmb->add_field( array( 'id' => 'rank_math_primary_' . $taxonomy, 'type' => 'hidden', 'default' => 0, 'attributes' => array( 'data-primary-term' => $taxonomy, ), ) ); } } // SEO Score. $cmb->add_field( array( 'id' => 'rank_math_seo_score', 'type' => 'hidden', ) );