$customer_id = get_current_user_id();
$last_order = wc_get_customer_last_order( $customer_id );
$order_id = $last_order->get_id();
$pros_html = "<div class='pcf-row'><b>Номер вашего заказа: {$order_id}</b></div>
<script type='text/javascript'>
jQuery(document).ready(function ($) {var order_id = '{$order_id}';console.log(order_id);});
</script>";
<?php echo get_template_directory_uri(); ?>/images/rus.jpg
Как убрать кавычки после php кода?
<a href="<?php the_permalink(); ?>">
<?php the_post_thumbnail('full', ['class' => 'lazy']); ?>
</a>
<a href="<?php the_permalink(); ?>">
<img class="lazy" src="<?php echo get_the_post_thumbnail_url(null, 'full'); ?>" >
</a>
<?php $count = 0; ?>
<?php $count++; ?>
<?php if ($count > 1) : ?>
//Ваш пост
<?php endif; ?>
$current_user = wp_get_current_user(); // Получаем данные текущего пользователя
if ($current_user->ID != 0) { // Проверяем, залогинен ли пользователь
$user_reg = $current_user->user_registered;
$datetime = new DateTime($user_reg);
echo $datetime->format('Y-m-d'); // Выведет год-месяц-день
} else {
echo "Пользователь не залогинен";
}
2001 - 20<?=date('y')?>
echo Carbon::now()->subMinutes(2)->locale('ru_RU')->diffForHumans(); // '2 минуты назад'
<?php
function time_elapsed_string($datetime, $full = false) {
$now = new DateTime;
$ago = new DateTime($datetime);
$diff = $now->diff($ago);
$diff->w = floor($diff->d / 7);
$diff->d -= $diff->w * 7;
//один ___, два ___, много ___
$string = array(
'y' => ['год', 'года', 'лет'],
'm' => ['месяц', 'месяца', 'месяцев'],
'w' => ['неделя', 'недели', 'недель'],
'd' => ['день', 'дня', 'дней'],
'h' => ['час', 'часа', 'часов'],
'i' => ['минута', 'минуты', 'минут'],
's' => ['секунда', 'секунды', 'секунд'],
);
foreach ($string as $k => &$v) {
if ($diff->$k) {
$v = $diff->$k . ' ' . pluralize($diff->$k, $v);
} else {
unset($string[$k]);
}
}
if (!$full) $string = array_slice($string, 0, 1);
return $string ? implode(', ', $string) . ' назад' : 'только что';
}
function pluralize($n, array $forms)
{
return
$n%10==1 && $n%100!=11
? $forms[0] :
( $n%10>=2 && $n%10<=4 && ($n%100<10 || $n%100>=20)
?$forms[1] : $forms[2]
);
}
?>
<?php echo time_elapsed_string('2019-04-22 00:22:35'); ?>
$udata = get_userdata( $user->ID );
$registered = $udata->user_registered;
- $wpdb->get_var($wpdb->prepare('SELECT user_registered FROM '.$wpdb->users.' WHERE ID="'.$id.'"'));
+ $wpdb->get_var('SELECT user_registered FROM '.$wpdb->users.' WHERE ID="'.$id.'"');
$wpdb->get_var(
$wpdb->prepare("SELECT user_registered FROM $wpdb->users WHERE ID=%d", $id)
);