Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author rob1n

    (@rob1n)

    There’s no option for that, but there’s a smarter_archives_months filter here:

    $month_names = array( '',
    __( 'Jan', 'smarter-archives' ), __( 'Feb', 'smarter-archives' ), __( 'Mar', 'smarter-archives' ),
    __( 'Apr', 'smarter-archives' ), __( 'May', 'smarter-archives' ), __( 'Jun', 'smarter-archives' ),
    __( 'Jul', 'smarter-archives' ), __( 'Aug', 'smarter-archives' ), __( 'Sep', 'smarter-archives' ),
    __( 'Oct', 'smarter-archives' ), __( 'Nov', 'smarter-archives' ), __( 'Dec', 'smarter-archives' )
    );
    unset( $month_names[0] );
    $month_names = apply_filters( 'smarter_archives_months', $month_names );

    You can hook into this filter, for example in your theme’s functions.php.

    Thread Starter michaelpon12

    (@michaelpon12)

    Thanks for this. Yeah i checked upon the backend of the plugin and see this. just changed the labels inside the quotes.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘complete month name’ is closed to new replies.