WordPress

Limit wordpress title to 25 characters

I will show you how you can limit the post titles on the wordpress. Please use below code and check the output <?php if (strlen(get_the_title()) > 25) { echo substr(get_the_title(),0, 25 ).’…’; } else { echo get_the_title();} ?> I hope this solution will work for you!!

Reset wordpress default jquery for front site

Reset wordpress default jquery for front site. Use below code in template functions.php file and you’r done! if( !is_admin()){ wp_deregister_script(‘jquery’); wp_register_script(‘jquery’, (“http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js”), false, ‘1.10.2’); wp_enqueue_script(‘jquery’); }