Skip to content

Instantly share code, notes, and snippets.

View farhadsakhaei's full-sized avatar
🎯
Focusing

Farhad Sakhaei farhadsakhaei

🎯
Focusing
View GitHub Profile
@farhadsakhaei
farhadsakhaei / dont-convert-this-date.php
Last active August 28, 2018 12:10
در صورتی که از افزونه دبلیو پی پارسی استفاده می کنید و مایل نیستید برای برخی از توابع، شمسی سازی استفاده شود می توانید از چنین کدی استفاده نمایید
<?php
if ( in_array( 'wp-parsidate/wp-parsidate.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) {
global $wpp_settings;
if(isset($wpp_settings) && $wpp_settings['persian_date'] == 'enable'){
$time_string = sprintf( $time_string,
gregdate(DATE_W3C, eng_number(get_the_date( DATE_W3C ))),
get_the_date()
);
}