/** * Exponer meta de Rank Math vía REST API * Permite leer/escribir _rank_math_* desde el MCP de WordPress * Requiere capability edit_posts (administradores y editores) */ add_action( 'init', function () { $rm_meta_keys = [ 'rank_math_title', 'rank_math_description', 'rank_math_focus_keyword', 'rank_math_robots', 'rank_math_canonical_url', 'rank_math_advanced_robots', 'rank_math_facebook_title', 'rank_math_facebook_description', 'rank_math_facebook_image', 'rank_math_twitter_title', 'rank_math_twitter_description', 'rank_math_twitter_image', 'rank_math_schema_LocalBusiness', 'rank_math_schema_Service', 'rank_math_schema_Product', ]; $post_types = [ 'page', 'post', 'portfolio', 'rank_math_locations' ]; foreach ( $post_types as $pt ) { foreach ( $rm_meta_keys as $key ) { register_post_meta( $pt, $key, [ 'show_in_rest' => true, 'single' => true, 'type' => 'string', 'auth_callback' => function () { return current_user_can( 'edit_posts' ); }, ]); } } });

Santa Teresa