이 플러그인은 최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다. 워드프레스의 좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 있을 수 있습니다.

Nyasro Nepali Date Converter

설명

Nyasro Nepali Date Converter is plugin with widget which convert Nepali Date to English Date and English Date to Nepali Date.
You can use following shortcode either to display today’s nepali date or to convert english-nepali date, anywhere in the post or pages.

  • Use [ny_dateconvert] to show today nepali date.
  • Use [ny_dateconvert date='{date}'] to convert nepali date to english date.
  • Use [ny_dateconvert date='{date}' convert='{type}'] to convert nepali to english date or english to nepali date.

Where,

  • {date} format is YYYY-MM-DD [YYYY : four digit year, MM : one or tow digits month, DD : one or digits day]
  • {type} format is eng_to_nep or nep_to_eng

This plugin have special widget which allows user interface to convert english-nepali date or vice versa.
You can use following shortcode to display nyasro nepali date converter widget.

  • Use [ny_datewidget] to show date converter widget anywhere in your post or pages.

Not only that but also it has date converter widget for theme widgets named Nyasro Nepali Date Converter,
which you can use to show date converter from Dashboard > Appearance > Widgets section in your theme sidebar.

If you are a developer then use following PHP code for date converter.

  • To show today’s nepali date :

    <?php
    
        if(function_exists('_Nyasro_todayDate'))
            _Nyasro_todayDate();        
    
    ?>
    
  • To convert english-nepali date or vice versa:

    <?php
        if(function_exists('_Nyasro_NepaliDateConverter'))
            _Nyasro_NepaliDateConverter( $date, $conversion);
    ?>
    

where $date = YYYY-MM-DD and $conversion = eng_to_nep | nep_to_eng.

  • To show date converter widget or box:

    <?php
        if(function_exists('_Nyasro_NepaliDateConverterWidget'))
            _Nyasro_NepaliDateConverterWidget();
    ?>
    

스크린샷

  • Nyasro Nepali Date Converter

  • Nyasro Nepali Date Converter on theme Widgets area

설치

This plugin is installed just like any other WordPress plugin.
More detailed installation instructions are available on the WordPress Codex.

If you want manual installation:

  1. Download Nyasro Nepali Date Converter
  2. Extract nyasro-nepali-date-converter.
  3. Upload this folder with files inside to ../wp-contents/plugins/
  4. Activate the plugin in Dashboard > Plugins
  5. Drag and drop from widget area if you want for sidebar.
  6. Use shortcodes for require features.
  7. Enjoy the converter. And then consider donating.

FAQ

What does this plugin do?

You can either display today’s nepali date or convert english-nepali date or vice versa.

What are date formats that I can use with this plugin ?

You can use only four digits year, two or one digits month and two or one digits day in this order YYYY-MM-DD,
where YYYY is year (ex. 2012), MM is month (ex. 11) and DD is day (ex. 25)

Still have some questions ?

you can message us if you have any problem regarding this plugin or anything to ask.
nyasro@gmail.com

후기

모든 2 평가 읽기

기여자 & 개발자

“Nyasro Nepali Date Converter”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

자국어로 “Nyasro Nepali Date Converter”(을)를 번역하세요.

개발에 관심이 있으십니까?

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록RSS로 구독하세요.

변경이력

2.0.1

  • Fixed some deprecated code.

2.0

  • Conversion file included with plugin.

1.0

  • First version of plugin.