Chodzi mi o zmianę sposbu wyświetlania treści na stronie.
Chciałbym aby na stronie wyświetlało się tak:
Baner - Zdjęcie - Opis filmu - baner - trailer.
W chwili obecnej jest tak podam podstonę http://playfilmosik.pl/panaceum-side-effects-2013/
Za tą cześć która obecnie jest na stronie odpowiada ten kod:
CODE
<?php
if (have_posts()) : while (have_posts()) : the_post();
/**
* Find the post formatting for the single post (full post view) in the post-single.php file
*/
get_template_part('post', 'single');
endwhile;
else :
get_template_part('post', 'noresults');
endif;
?>
if (have_posts()) : while (have_posts()) : the_post();
/**
* Find the post formatting for the single post (full post view) in the post-single.php file
*/
get_template_part('post', 'single');
endwhile;
else :
get_template_part('post', 'noresults');
endif;
?>
Czy da się ten kod roździelić i zrobić tak aby strona wyświetlała się według schematu:
Baner - Zdjęcie - Opis filmu - baner - trailer.
Będę wdzięczny za każdą podpowiedź.