Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #429455

    HI Enfold!
    Awesome theme!!
    My client does not blog often, but has been blogging for years!
    I need to set the archives by year, not by month. Please advise,
    Thank you

    #429703

    Hey Hindy!

    Please add following code to Functions.php file in Appearance > Editor

    
    function my_limit_archives( $args ) {
        $args['type'] = 'yearly';
        return $args;
    }
    
    add_filter( 'widget_archives_args', 'my_limit_archives' );
    add_filter( 'widget_archives_dropdown_args', 'my_limit_archives' );

    Cheers!
    Yigit

    #429923

    Thank you Yigit!

    for your quick & excellent response!!!

    #429945

    Hi!

    You are welcome, we are always happy to help :)
    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    Best regards,
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Set Archive to display by Year NOT month’ is closed to new replies.