Skip to Content

Shabu James Paul

  • Home
  • About
  • Services
  • Blog
  • Contact
Home Blog General Playing with WordPress Excerpt Filters and actions
General

Playing with WordPress Excerpt Filters and actions

by admin October 2, 2022October 2, 2022

Restrict the no of words in the excerpt

function sjp_excerpt_length($length){ 
    return 20; //Words Count
} 
add_filter('excerpt_length', 'sjp_excerpt_length');
Previous Article Disabling click on a href using css
Next Article The destination directory for file streaming does not exist or is not writable

You may also like...

July 17, 2022July 17, 2022

Swiping the carousel not working in bootstrap 4

December 8, 2022December 8, 2022

VT-x is disabled in the BIOS for both all CPU modes (VERR_VMX_MSR_ALL_VMX_DISABLED)

December 7, 2022December 7, 2022

How to remove URL/href when printing bootstrap website using jquery

January 2, 2023January 2, 2023

Detect an instance that belongs to GCP or another providers

© Copyright 2026 Shabu James Paul. All Rights Reserved.