Skip to content

Instantly share code, notes, and snippets.

@theodorocaliari
Created August 8, 2013 10:51
Show Gist options
  • Save theodorocaliari/6183664 to your computer and use it in GitHub Desktop.
Save theodorocaliari/6183664 to your computer and use it in GitHub Desktop.
Add excerpt in wordpress pages. Adicionar resumo nas paginas do wordpress.
<?php
add_action('init', 'my_custom_init');
function my_custom_init() {
add_post_type_support( 'page', 'excerpt' );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment