function cc_mime_types($mimes) {
$mimes['svg'] = 'image/svg+xml';
return $mimes;
}
add_filter('upload_mimes', 'cc_mime_types');
<?php
echo do_shortcode(... );
?>
<?php
echo do_shortcode(
'[contact-form-7 id="11" title="Contact Form 7"]'
);
?>
<?php
$args = array(
'posts_per_page' => 1,
'orderby' => 'post_date',
'order' => 'DESC',
'post_type' => 'post',
'post_status' => 'publish'
);
$query = new WP_Query( $args );
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post(); ?>
...
<?php }
wp_reset_postdata();
} ?>
wp_get_recent_posts
все же загадка