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' );
}

Got a project in mind? Send me a quick message, and I'll get back to you within 24 hours!.

Recent Posts

  1. Disabling Payment Methods in WooCommerce Based on Conditions
  2. How to Update Product Quantity in WooCommerce Using Custom Code
  3. Dynamically Generating a Table of Contents in WordPress
  4. Direct Checkout in WooCommerce - Add Product to Cart from Checkout Page & Skip Shop, Product, and Cart Pages
  5. Understanding the Impact of git reset --hard Command

Your Questions / Comments

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