Skip to content

Instantly share code, notes, and snippets.

@frankyonnetti
Created May 23, 2021 21:13
Show Gist options
  • Save frankyonnetti/c035eca29fdbfa9cfb48c87cddf7d902 to your computer and use it in GitHub Desktop.
Save frankyonnetti/c035eca29fdbfa9cfb48c87cddf7d902 to your computer and use it in GitHub Desktop.
WordPress - excerpts for pages #wordpress #excerpts
<?php
/**
* Enabe excerpts for pages
*/
function THEME_enable_page_excerpt() {
add_post_type_support('page', array('excerpt'));
}
add_action('init', 'THEME_enable_page_excerpt');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment