Skip to content

Instantly share code, notes, and snippets.

@thierrypigot
Created May 28, 2015 08:23
Show Gist options
  • Save thierrypigot/337236486d66f3f0fe40 to your computer and use it in GitHub Desktop.
Save thierrypigot/337236486d66f3f0fe40 to your computer and use it in GitHub Desktop.
WordPress : Ajouter un champ extrait aux pages
<?php
function tp_excerpt_pages()
{
add_meta_box('postexcerpt', __('Excerpt'), 'post_excerpt_meta_box', 'page', 'normal', 'core');
}
add_action( 'admin_menu', 'tp_excerpt_pages' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment