من ميخام در سايدبارچپ ليست كت اخبار ورزشي و سايدبارراست ليست كت اخبار علمي رو بيارم چكار كنم؟
اين رو خودم نوشتم توي سايدبار:
<div id="box1">
<?php if(function_exists('dynamic_sidebar') && dynamic_sidebar()):else: ?>
<ul>
<li>
<h2>
<?php
$cslug='sportnews';
$idObj = get_category_by_slug($cslug);
$id = $idObj->term_id;
$cname=get_cat_name($id);
_e($cname);
?>
</h2>
<?php
$q = 'cat=' . $id;
query_posts($q);
if (have_posts()) : while (have_posts()) : the_post();
?>
<h2><a>"> <?php the_title(); ?> </a> </h2>
<?php
endwhile; endif;
?>
</li>
</ul>
<?php endif; ?>
</div>