//WP_Query Arguments
$args = array(
'date_query' => array(
array(
'column' => 'post_date',
'after' => '1 week ago',
)
),
'posts_per_page' => -1
);
//Execute WP_Query (Results placed in $the_query)
$the_query = new WP_Query($args);
//The WordPress Loop
if ($the_query->have_posts()) { //Check if there are any posts returned in $the_query
echo '<ul>';
while ($the_query->have_posts()) { //Loop through posts returned in $the_query
$the_query->the_post();
echo '<li>' . get_the_title() . '</li>';
}
echo '</ul>';
} else { //If no posts found
echo "No Posts Found";
}
//Reset WordPress Post Data
wp_reset_postdata();
фб видимо идет напрямую из темы вп
Может кто знает как отложить загрузку или полностью удалить из загрузки скрипты яндекс метрики, гугл аналитики, фэйсбука и тп.
Создал соц сеть на основе buddyPress, но по правде говоря, встроенный мессенджер оставляет желать лучшего
.and()
.formLogin()
.loginPage("/login")
.loginProcessingUrl("/login")
.usernameParameter("email")
.passwordParameter("password")
.defaultSuccessUrl("/dashboard")
.failureUrl("/login?logout")
.permitAll()
при нажатии на вход всплывает окно и ссылка получается вида site.com/***?login
?login
- это всего лишь request parameter