• ?????
    ?? ???????????
    PHP
    ???? ? ????? ?????? ?? ????? ????.

    ???? ????? ? ?????? ?? ??? ???? ?? ????? ??????? ???? ??????? ???? ?? ???? ????? ??????? ????? ?? ??? ????? ?????? ???? ????? ??? ????
    j F Y
    ?? ????? ?????? ?? ???? ?? ????
    $date
    ?? ????? ????.

    ?? ?? ????
    wp-parsidate\includes\plugins\disable.php
    ??? ???? ?? ???? ?? ?? ??? ????? ??????. ??????
    return $format;
    ???? ????:
    return $date;
    ???? ???? ?? ??? ????? ???? ?? ???? ????? ??? ?? ????.

    function wpp_fix_i18n( $date, $format, $timestamp, $gmt ) {
    	global $post;
    	$post_id = isset( $post->ID ) ? $post->ID : null;
    
    	if ( ! disable_wpp() ) {
    		return $format;
    	}
    
    	if ( $post_id != null && get_post_type( $post_id ) == 'shop_order' && isset( $_GET['post'] ) ) // TODO: Remove after implement convert date for woocommerce
    	{
    		return $date;
    	} else {
    		return parsidate( $format, $timestamp, ! wpp_is_active( 'conv_dates' ) ? 'eng' : 'per' );
    	}
    }

    ?????? ????:
    ?? ???? ???? ???? ??? ?????.

    function wpp_fix_wp_date( $date, $format, $timestamp, $timezone ) {
    	if ( ! disable_wpp() ) {
    		return $format;
    	}
    
    	return parsidate( $format, $timestamp, ! wpp_is_active( 'conv_dates' ) ? 'eng' : 'per' );
    }
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘??? ?????? ???? wp_date’ is closed to new replies.