Created
August 26, 2023 17:05
-
-
Save cesjam7/9428670c717a2590134308cbffd28e26 to your computer and use it in GitHub Desktop.
Tarea de rutas dinámicas y estáticas
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1>hola mundo</h1> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php function custom_meta_box() { | |
add_meta_box('custom_meta_box_id', 'Meta Box Título', 'display_custom_meta_box', 'job_listing', 'normal', 'high'); | |
} | |
add_action('admin_init', 'custom_meta_box'); | |
// Añadir el meta box | |
function custom_meta_box() { | |
add_meta_box('custom_meta_box_id', 'Meta Box Título', 'display_custom_meta_box', 'job_listing', 'normal', 'high'); | |
} | |
add_action('add_meta_boxes', 'custom_meta_box'); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment