W index.html to na pewno nie.
Musisz zmodyfikować pliki swojego motywu. To które pliki, to już dość mocno zależy natomiast od motywu, z którego korzystasz…
Pewnie najszybciej będzie sprawdzić metodą prób i błędów, który plik motywu odpowiada za wyświetlanie których stron i dodanie tam kodu slidera.
Dodatkowo pomocne może Ci być: http://codex.wordpress.org/Template_Hierarchy
ktos wczesniej mowil ze nalezy szukac w indexie
tu wklejam caly kod:
</div>
<div id="primary" class="site-content ">
<div id="content" role="main">
<?php if ( have_posts() ) : ?>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php
/* Include the Post-Format-specific template for the content.
* If you want to overload 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() );
?>
<?php endwhile; ?>
<div class="clear"></div>
<div class="grid_4">
<?php patrick_content_nav( 'nav-below' ); ?>
</div>
<?php elseif ( current_user_can( 'edit_posts' ) ) : ?>
<?php get_template_part( 'no-results', 'index' ); ?>
<?php endif; ?>
ale mysle ze ta czesc za to odpowiada
<?php if ( have_posts() ) : ?>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
tylko jak zmienic aby dodawalo na kazdej stronie a nie tylko tej z wpisami? nie wiem czego uzyc zamiast have_posts
źle ci się wydaje …
-po pierwsze, to nie jest cały kod
-po drugie, za ten slider odpowiedzialna jest linijka
<?php get_template_part( 'slide’, 'index’ ); ?>
Więc albo:
a) usuniesz ją z pliku index.php a wrzucisz na końcu pliku header.php
b) np. dodasz ją do pliku single.php czy gdzie tam jeszcze byś potrzebował, zaraz pod linijką
get_header(); ?>