<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script type="text/javascript">
document.onkeydown = arrowChecker;
function arrowChecker(e) {
e = e || window.event;
if (e.keyCode == '37') { //left
var newHref = $( '.prev1' ).attr( 'href' );
window.location=newHref;
}
else if (e.keyCode == '39') { //right
var newHref = $( '.next1' ).attr( 'href' );
window.location=newHref;
}
}
</script>
<?php
/**
* The loop template file.
*
* Included on pages like index.php, archive.php and search.php to display a loop of posts
* Learn more: http://codex.wordpress.org/The_Loop
*
* @package storefront
*/
do_action( 'storefront_loop_before' );
while ( have_posts() ) : the_post();
/* Include the Post-Format-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
get_template_part( 'content', get_post_format() );
endwhile;
/**
* @hooked storefront_paging_nav - 10
*/
do_action( 'storefront_loop_after' );
<h1 class="page-title">Магазин</h1><ul class="products"></ul>
Вот это появилось в коде, через браузер посмотрел. А должна быть отдельная страница с готовыми стилями? Я сделал всё как в документации написано для подключения темы и вот такой вот результат во всех страницах(Корзина, магазин, мой аккаунт и тд...)