while ( $loop->have_posts() ): $loop->the_post(); ?>
<div>
<div class="img-wrapper">
<?php if ( has_post_thumbnail()) {
the_post_thumbnail('full','class=img-fluid');
} ?>
</div>
<?php endwhile; wp_reset_postdata(); ?>
settings: "unslick"
впереди слайд, а по бокам два полупрознычных с плавной сменой.
add_filter( 'query_vars', 'addnew_query_vars', 10, 1 );
function addnew_query_vars($vars)
{
$vars[] = 'post_type';
return $vars;
}
function custom_rewrite_basic()
{
add_rewrite_rule('/([^/]+)/?$', 'taxonomy-years.php?post_type=$matches[1]', 'top');
}
add_action('init', 'custom_rewrite_basic');
'post_type' => get_query_var('post_type');
1. Параметр post_type в WP_Query может принимать массив, а не только одно bmw, там string|array.
2. Одну и ту же таксономию можно зарегистрировать для множества custom post type, там тоже string|array.
$cat = get_term_by('name', single_cat_title('',false), 'years'); $catSlug = $cat->slug;
npm link gulp
C:\Verstka\node_modules\gulp -> C:\Users\ligisayan\AppData\Roaming\npm\node_modules\gulp
module.js:549
throw err;
^
Error: Cannot find module 'del'
at Function.Module._resolveFilename (module.js:547:15)
at Function.Module._load (module.js:474:25)
at Module.require (module.js:596:17)
at require (internal/module.js:11:18)
at Object. (C:\Verstka\gulpfile.js:9:7)
at Module._compile (module.js:652:30)
at Object.Module._extensions..js (module.js:663:10)
at Module.load (module.js:565:32)
at tryModuleLoad (module.js:505:12)
at Function.Module._load (module.js:497:3)
onrendered: function (canvas) {
var img = canvas.toDataURL("image/png");
var doc = new jsPDF({scale: 1});
doc.addImage(img, 'JPEG', 20,20);
doc.save('test.pdf');
}
html2canvas(document.querySelector("#myDiv")).then(canvas => {
document.body.appendChild(canvas);
saveImage(); //or whatever you want to execute
});