Forum Replies Created

Viewing 1 replies (of 1 total)
  • You can use below code snippet to display WordPress Post date in Nepali.
    Replace default Post Meta with this code in content-single.php or single.php :

    `
    <?php
    $post_date = get_the_date( ‘Y-m-d’ );
    $date_conversion =eng_to_nep;
    echo “???????? ????: “;
    if(function_exists(‘_Nyasro_NepaliDateConverter’)){
    _Nyasro_NepaliDateConverter( $post_date, $date_conversion);

    }else {
    default_meta();
    }
    ?>`

    Output: ???????? ????: ??????, ???? ?, ????

Viewing 1 replies (of 1 total)