• Hello,

    I love sparkling theme but I have Two Problem with sparkling.

    1} The Excerpt lenght is very long It shows 70% of the content. so how to compress the Excerpt length.

    2} I want to add Pagination like 1,2,3,4,5,…. More. If sparkling have these function already than how to find these function.
    Site http://www.apkshout.com

    Please Reply.

    Thanks in advanced

Viewing 4 replies - 1 through 4 (of 4 total)
  • 1. Your site is dead.
    2. The easiest way to reduce excerpt size is to override the function or better yet, add a filter for “the_excerpt” and return back a smaller size. Dont forget to set your priority to a high # so its the last to run
    3. For pagination there are plugins to help or u can do it yourself. try wp-pagenav plugin.

    Hi @mr. Das,

    I hope you are well today and thank you for your questions.

    1} The Excerpt lenght is very long It shows 70% of the content. so how to compress the Excerpt length.

    You can reduce the excerpt length by creating a php file like colorlib-plugin.php in the wp-content/plugins/ directory of your WordPress install and then add the following code in it.

    <?php
    /*
    Plugin Name: Colorlib Plugin
    Description: Quick Custom Solution Plugin for Implementing Custom Solution.
    Version: 1.0.0
    Author: Movin
    Author URI: http://freewptp.com/
    License: GNU General Public License (Version 2 - GPLv2)
    */
    
    function custom_excerpt_length( $length ) {
    	return 30;
    }
    add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );

    2} I want to add Pagination like 1,2,3,4,5,…. More. If sparkling have these function already than how to find these function.
    Site http://www.apkshout.com

    You can try achieving this by installing this plugin https://wordpress.org/plugins/wp-pagenavi/ and then using the custom solution posted in the following reply.

    https://colorlib.com/wp/forums/topic/how-to-add-numeric-pagination/#post-19217

    Best Regards,
    Movin

    Thread Starter apkvsal

    (@apkvsal)

    Many many Thanks to u Movin But sorry unfortunately i change my theme sparkling to MesoColumn theme because of many reason. Again thaks to u Movin.

    ~bsal

    You are most welcome here 🙂

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘How to add ??’ is closed to new replies.