Sarathlal N

Enable Excerpt in WordPress pages

In default, the excerpts are only available for WordPress posts.

But we can easily enable this excerpt functionality to our WordPress pages with few lines of codes.

Just add below code snippet in to WordPress theme’s / child theme’s functions.php file.

add_action( 'init', 'add_excerpt_to_pages' );
function add_excerpt_to_pages() {
 add_post_type_support( 'page', 'excerpt' );
}

Recent Posts

  1. Automating Release Generation with GitHub Actions
  2. WP CLI Commands to Bulk Delete Entries in WordPress Database
  3. Split a Single CSV File into Multiple Files Using the Split Command - Bash
  4. Migrating code repo from BitBucket to GitHub
  5. Streamlining Development - Our Journey with Git, Bitbucket, and Jira

Your Questions / Comments

If you found this article interesting, found errors, or just want to discuss about it, please get in touch.