Created
May 23, 2021 21:13
-
-
Save frankyonnetti/c035eca29fdbfa9cfb48c87cddf7d902 to your computer and use it in GitHub Desktop.
WordPress - excerpts for pages #wordpress #excerpts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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