Archiv der Kategorie: SEO

SEOPress Metabox unter die ACF Felder bewegen

SEOPress unter die ACF Felder bewegen: /* move SEOPress meta box down */ add_action( ‚add_meta_boxes‘, function() { global $wp_meta_boxes; $post_type = ‚page‘; // Get seopress meta boxes $seopress_meta_box = $wp_meta_boxes[$post_type][’normal‘][‚high‘][’seopress_cpt‘]; $seopress_analysis_meta_box = $wp_meta_boxes[$post_type][’normal‘][‚high‘][’seopress_content_analysis‘]; unset( $wp_meta_boxes[$post_type][’normal‘][‚high‘][’seopress_cpt‘] ); unset( $wp_meta_boxes[$post_type][’normal‘][‚high‘][’seopress_content_analysis‘] ); // Move it to ‚advanced‘ location with ‚low‘ priority. if ( empty( $wp_meta_boxes[$post_type][‚advanced‘] ) ) { […]