Я пытался изменить этот код:
function filter_where( $where = '' ) {
$where .= " AND post_date > '" . date('Y-m-d', strtotime('-365 days')) . "'";
return $where;}
add_filter( 'posts_where', 'filter_where' );
на этот:
function filter_where( $where = '' ) {
$where .= " AND post_date > '" . date('Y-m-d', strtotime('-'.$timestamp.' days')) ."'";
return $where;}
add_filter( 'posts_where', 'filter_where' );
Вы могли заметить, что я пытался поместить переменную $ timestamp в strtotime.Однако код не работает.Я сделал правильный синтаксис, чтобы поместить переменную в функцию PHP strtotime?
Я ценю любую помощь.