Skip to content

Instantly share code, notes, and snippets.

@kirasiris
Created October 12, 2017 08:53
Show Gist options
  • Save kirasiris/dbdc2301e21371af146f01cccc7c5644 to your computer and use it in GitHub Desktop.
Save kirasiris/dbdc2301e21371af146f01cccc7c5644 to your computer and use it in GitHub Desktop.
<?php
function wpb_theme_setup(){
// Registrando la funcion para el menu principal
register_nav_menus(array(
'primary' => __('Menu Principal'),
'secondary' => __('Menu Secundario'),
));
// Soporte para archivo
add_theme_support('custom-logo');
add_theme_support('post-thumbnails');
add_image_size('post-recientes',75,75);
add_theme_support('post-formats' , array('status'));
}
add_action('after_setup_theme','wpb_theme_setup');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment