Skip to content

Instantly share code, notes, and snippets.

@cesjam7
Created August 26, 2023 17:05
Show Gist options
  • Save cesjam7/9428670c717a2590134308cbffd28e26 to your computer and use it in GitHub Desktop.
Save cesjam7/9428670c717a2590134308cbffd28e26 to your computer and use it in GitHub Desktop.
Tarea de rutas dinámicas y estáticas
<h1>hola mundo</h1>
<?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