Skip to content

Instantly share code, notes, and snippets.

@joseconti
Last active April 26, 2021 17:19
Show Gist options
  • Save joseconti/32f2cb9405c8eb6873d9d15fce1c2b1a to your computer and use it in GitHub Desktop.
Save joseconti/32f2cb9405c8eb6873d9d15fce1c2b1a to your computer and use it in GitHub Desktop.
Añadir metaboxes de The7 a un Custom Post Type
<?php
function anadir_metaboxes_the7_a_cpt( $post_type_array ) {
$post_type_array[] = 'nombre_custom_post_type';
return $post_type_array;
}
add_filter( 'presscore_pages_with_basic_meta_boxes', 'anadir_metaboxes_the7_a_cpt' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment