konto usunięte
Temat: problem ze skryptem Organic Tabs w wordpressie
Witam, zainstalowałem skrypt organic tabs do mojego wordpressa lecz gdy dodaje menu z poziomu kokpitu WP to nie działa mi w ogóle ten skrypt a kiedy dodam linki (z palca) w kodzie index.php tam gdzie mam osadzone TABS to działa... nie wiem z czego to wynika i co tu się gryzie.tutaj przykład:
http://djbolek1.cal24.pl/wordpress/wordpress
niżej przedstawiam kod kiedy wtyczka nie działa:
<div id="example-two">
<ul class="nav">
<?php wp_nav_menu( array('theme_location'=>'tabs_menu' ) ); ?>
</ul>
<div class="list-wrap">
<ul id="glowny">
<?php query_posts('category_name=oferta_lewa'); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="title"> <?php the_title(); ?> </div>
<div class="txt"> <?php the_content(); ?> </div>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
</ul>
<ul id="energy_drink" class="hide">
<?php query_posts('category_name=oferta_prawa'); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="title"> <?php the_title(); ?> </div>
<div class="txt"> <?php the_content(); ?> </div>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
</ul>
<ul id="latino" class="hide">
<?php while (have_posts()) : the_post(); ?>
<div class="title"> <?php the_title(); ?> </div>
<div class="txt"> <?php the_content(); ?> </div>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
</ul>
<ul id="katowice" class="hide">
<?php query_posts('category_name=oferta_prawa'); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="title"> <?php the_title(); ?> </div>
<div class="txt"> <?php the_content(); ?> </div>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
</ul>
</div> <!-- END List Wrap -->
</div> <!-- END Organic Tabs (Example One) -->
a teraz kod jak działa, tylko nie ma polskich znaków i trzeba dodawać w kodzie kolejne strony do menu:
<div id="example-two">
<ul class="nav">
<li class="nav-one"><a href="#glowny" class="current">Kanał Główny</a></li>
<li class="nav-two"><a href="#energy_drink">Kanał Energy Drink</a></li>
<li class="nav-three"><a href="#latino">Kanał Latino</a></li>
<li class="nav-four "><a href="#hard_style">Kanał Hard Style</a></li>
<li class="nav-five last"><a href="#katowice">Katowice</a></li>
<?php wp_nav_menu( array('theme_location'=>'tabs_menu' ) ); ?>
</ul>
<div class="list-wrap">
<ul id="glowny">
<?php query_posts('category_name=oferta_lewa'); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="title"> <?php the_title(); ?> </div>
<div class="txt"> <?php the_content(); ?> </div>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
</ul>
<ul id="energy_drink" class="hide">
<?php query_posts('category_name=oferta_prawa'); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="title"> <?php the_title(); ?> </div>
<div class="txt"> <?php the_content(); ?> </div>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
</ul>
<ul id="latino" class="hide">
<?php while (have_posts()) : the_post(); ?>
<div class="title"> <?php the_title(); ?> </div>
<div class="txt"> <?php the_content(); ?> </div>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
</ul>
<ul id="katowice" class="hide">
<?php query_posts('category_name=oferta_prawa'); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="title"> <?php the_title(); ?> </div>
<div class="txt"> <?php the_content(); ?> </div>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
</ul>
</div> <!-- END List Wrap -->
</div> <!-- END Organic Tabs (Example One) -->
wordpress generuje różne klassy i divy przy menu i to może być problemem mi się wydaje. Proszę o pomoc!