سلام . من میخوام یک دسته بندی بسارم ولی تو widgets دسته بندی هم نشون داده نشه ! میشه ؟؟
البته میتونم از Links استفاده کنم ولی میخوام تعداد پست های اون دسته بندی جلوش باشه !!
سلام . من میخوام یک دسته بندی بسارم ولی تو widgets دسته بندی هم نشون داده نشه ! میشه ؟؟
البته میتونم از Links استفاده کنم ولی میخوام تعداد پست های اون دسته بندی جلوش باشه !!
اره منم دنبال همچین موضوعی هستم که یه سری از دسته بندی هام نمیخوام تو لیست دسته ها نشون داده بشه.
با ابزارک پیشفرض وردپرس نمیشه. مگر اینکه افزونه ای چیزی باشه که ابزارکی با تنظیمات بیشتر فراهم کنه که بتونید یه سری از دسته ها رو exclude کنید. بهترین و ساده ترین راه دست بردن توی فایل sidebar تون هست. مثلاً :
<?php
wp_list_categories('orderby=name&exclude=3,5,9,16'); ?>
خیلی ممنون. ببخشید خواستم ببینم که الان من دسته هام تو سایت هست و میخوام تو یه div اینورش تعداد پست های توش رو نشون بدم آیا راهی هست؟ چون بطور دیفالت یه پرانتز باز میکنه و جلوی دسته مینویسه. اگه shopost=1 بزاریم تو حلقه.
با کد زیر میتونید تعداد نوشته های موجود توی هر دسته رو هم نمایش بدید :
<?php
wp_list_categories('orderby=name&show_count=1&exclude=3,5,9,16'); ?>
ببخشید exclude=3,5,9,16 عدد ها چی هست ؟؟ ID دسته بندی ها هست ؟ من ID رو دادم بر نداشت
حل شد .
با پلاگین : Advanced Category Excluder
siavash گفت:
ببخشید exclude=3,5,9,16 عدد ها چی هست ؟؟ ID دسته بندی ها هست ؟ من ID رو دادم بر نداشت
شماره کتگوری که می خوای پنهان بشه.واسه برگه ها هم این راه جواب می ده
ببخشید من این کد رو تو ساید بار که میذارم میاد یکسری دسته بندی جدید نشون میده و اون دسته های که میخوام پنهان شن رو اونجا پنهان میکنه در صورتی که لیست دسته بندی های قبای هنور در پائین این لیست قرار داره.
یا جای کد رو اشتباه میذارم یا جایگزین اشتباه میکنم؟
biparva گفت:
ببخشید من این کد رو تو ساید بار که میذارم میاد یکسری دسته بندی جدید نشون میده و اون دسته های که میخوام پنهان شن رو اونجا پنهان میکنه در صورتی که لیست دسته بندی های قبای هنور در پائین این لیست قرار داره.
یا جای کد رو اشتباه میذارم یا جایگزین اشتباه میکنم؟
کد اون قسمت از سایت رو اینجا بگذارید
<div id="sidebar">
<ul id="sidelist">
<?php /* Widgetized sidebar, if you have the plugin installed. */
if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>
<?php endif; ?>
<?php
// this is where 10 headlines from the current category get printed
if ( is_single() ) :
global $post;
$categories = get_the_category();
foreach ($categories as $category) :
?>
<li><h2><?php _e('More from this category', 'mimbo'); ?></h2>
<ul class="bullets">
<?php
$posts = get_posts('numberposts=' . get_mimbo_option('same_cat_count') . '&category='. $category->term_id);
foreach($posts as $post) :
?>
</li>
<li><a>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
<li><strong><a>term_id);?>" title="<?php _e('View all posts filed under', 'mimbo'); ?> <?php echo $category->name; ?>"><?php _e('Archive for ‘', 'mimbo'); ?><?php echo $category->name; ?><?php _e('’', 'mimbo'); ?> »</a></strong></li>
<?php endforeach; endif ; ?>
<?php if ( is_home() ) { ?>
<li><h3><?php
// this is where the name of the News (or whatever) category gets printed
wp_list_categories('include=' . get_mimbo_option('news') . '&title_li=&style=none'); ?></h3>
<?php
// this is where the last three headlines are pulled from the News (or whatever) category
query_posts('showposts=' . get_mimbo_option('news_count') . '&cat=' . get_mimbo_option('news'));
?>
<ul class="bullets">
<?php while (have_posts()) : the_post(); ?>
</li>
<li><a>" rel="bookmark"><?php the_title(); ?></a></li>
<?php endwhile; ?>
<?php } ?>
<li><h3><?php _e('Browse Archives', 'mimbo'); ?></h3>
<form id="archiveform" action="">
<select name="archive_chrono" onchange="window.location=(document.forms.archiveform.archive_chrono[document.forms.archiveform.archive_chrono.selectedIndex].value);">
<option><?php _e('Select a month...', 'mimbo'); ?></option>
<?php if (use_jalali_calendar()) wp_get_jarchives('type=monthly&format=option'); else wp_get_archives('type=monthly&format=option'); ?>
</select>
</form>
</li>
<li><h3><?php _e('Browse Categories', 'mimbo'); ?></h3>
<ul class="subnav">
<?php wp_list_categories('title_li='); ?>
</li>
<?php if ( get_mimbo_option('ads') ) { ?>
<li><h3><?php _e('Ads & Sponsors', 'mimbo'); ?></h3>
<div class="ads">
<?php echo get_mimbo_option('ads'); ?>
</div>
</li>
<?php } ?>
<li><h3><?php _e('Contributors', 'mimbo'); ?></h3>
<ul class="bullets">
<?php wp_list_authors
('exclude_admin=0&show_fullname=1&hide_empty=1&feed_image=' .
get_bloginfo('template_url') . '/images/rss.gif&feed=XML'); ?>
</li>
<!--END SIDELIST-->
</div><!--END SIDEBAR-->
من میخوام دسته۴۶/۴۴/۴۴/۴۲/۵۱/۵۲ حذف بشن از لیست دسته بندی ها/ممنونم
این رو یه تست بزن
<div id="sidebar">
<ul id="sidelist">
<?php /* Widgetized sidebar, if you have the plugin installed. */
if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>
<?php endif; ?>
<?php
// this is where 10 headlines from the current category get printed
if ( is_single() ) :
global $post;
$categories = get_the_category();
foreach ($categories as $category) :
?>
# <h2><?php _e('More from this category', 'mimbo'); ?></h2>
<ul class="bullets">
<?php
$posts = get_posts('numberposts=' . get_mimbo_option('same_cat_count') . '&category='. $category->term_id);
foreach($posts as $post) :
?>
# "><?php the_title(); ?>
<?php endforeach; ?>
# term_id);?>" title="<?php _e('View all posts filed under', 'mimbo'); ?> <?php echo $category->name; ?>"><?php _e('Archive for ‘', 'mimbo'); ?><?php echo $category->name; ?><?php _e('’', 'mimbo'); ?> »
<?php endforeach; endif ; ?>
<?php if ( is_home() ) { ?>
# <h3><?php
// this is where the name of the News (or whatever) category gets printed
wp_list_categories('include=' . get_mimbo_option('news') . '&title_li=&style=none'&&exclude=42,44,46,51,52); ?></h3>
<?php
// this is where the last three headlines are pulled from the News (or whatever) category
query_posts('showposts=' . get_mimbo_option('news_count') . '&cat=' . get_mimbo_option('news'));
?>
<ul class="bullets">
<?php while (have_posts()) : the_post(); ?>
# " rel="bookmark"><?php the_title(); ?>
<?php endwhile; ?>
<?php } ?>
# <h3><?php _e('Browse Archives', 'mimbo'); ?></h3>
<form id="archiveform" action="">
<select name="archive_chrono" onchange="window.location=(document.forms.archiveform.archive_chrono[document.forms.archiveform.archive_chrono.selectedIndex].value);">
<option><?php _e('Select a month...', 'mimbo'); ?></option>
<?php if (use_jalali_calendar()) wp_get_jarchives('type=monthly&format=option'); else wp_get_archives('type=monthly&format=option'); ?>
</select>
</form>
# <h3><?php _e('Browse Categories', 'mimbo'); ?></h3>
<ul class="subnav">
<?php wp_list_categories('title_li='); ?>
<?php if ( get_mimbo_option('ads') ) { ?>
# <h3><?php _e('Ads & Sponsors', 'mimbo'); ?></h3>
<div class="ads">
<?php echo get_mimbo_option('ads'); ?>
</div>
<?php } ?>
# <h3><?php _e('Contributors', 'mimbo'); ?></h3>
<ul class="bullets">
<?php wp_list_authors
('exclude_admin=0&show_fullname=1&hide_empty=1&feed_image=' .
get_bloginfo('template_url') . '/images/rss.gif&feed=XML'); ?>
<!--END SIDELIST-->
</div><!--END SIDEBAR-->
تست کردم ولی تمام صفحه بهم ریخت و ستون هم حذف شد
biparva گفت:
تست کردم ولی تمام صفحه بهم ریخت و ستون هم حذف شد
<?php /* Widgetized sidebar, if you have the plugin installed. */
if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>
<?php endif; ?>
<?php
// this is where 10 headlines from the current category get printed
if ( is_single() ) :
global $post;
$categories = get_the_category();
foreach ($categories as $category) :
?>
# <h2><?php _e('More from this category', 'mimbo'); ?></h2>
<ul class="bullets">
<?php
$posts = get_posts('numberposts=' . get_mimbo_option('same_cat_count') . '&category='. $category->term_id);
foreach($posts as $post) :
?>
# "><?php the_title(); ?>
<?php endforeach; ?>
# term_id);?>" title="<?php _e('View all posts filed under', 'mimbo'); ?> <?php echo $category->name; ?>"><?php _e('Archive for ‘', 'mimbo'); ?><?php echo $category->name; ?><?php _e('’', 'mimbo'); ?> »
<?php endforeach; endif ; ?>
<?php if ( is_home() ) { ?>
# <h3><?php
// this is where the name of the News (or whatever) category gets printed
wp_list_categories('include=' . get_mimbo_option('news') . '&title_li=&style=none'&exclude=42,44,46,51,52); ?></h3>
<?php
// this is where the last three headlines are pulled from the News (or whatever) category
query_posts('showposts=' . get_mimbo_option('news_count') . '&cat=' . get_mimbo_option('news'));
?>
<ul class="bullets">
<?php while (have_posts()) : the_post(); ?>
# " rel="bookmark"><?php the_title(); ?>
<?php endwhile; ?>
<?php } ?>
# <h3><?php _e('Browse Archives', 'mimbo'); ?></h3>
<form id="archiveform" action="">
<select name="archive_chrono" onchange="window.location=(document.forms.archiveform.archive_chrono[document.forms.archiveform.archive_chrono.selectedIndex].value);">
<option><?php _e('Select a month...', 'mimbo'); ?></option>
<?php if (use_jalali_calendar()) wp_get_jarchives('type=monthly&format=option'); else wp_get_archives('type=monthly&format=option'); ?>
</select>
</form>
# <h3><?php _e('Browse Categories', 'mimbo'); ?></h3>
<ul class="subnav">
<?php wp_list_categories('title_li='); ?>
<?php if ( get_mimbo_option('ads') ) { ?>
# <h3><?php _e('Ads & Sponsors', 'mimbo'); ?></h3>
<div class="ads">
<?php echo get_mimbo_option('ads'); ?>
</div>
<?php } ?>
# <h3><?php _e('Contributors', 'mimbo'); ?></h3>
<ul class="bullets">
<?php wp_list_authors
('exclude_admin=0&show_fullname=1&hide_empty=1&feed_image=' .
get_bloginfo('template_url') . '/images/rss.gif&feed=XML'); ?>
<!--END SIDELIST-->
</div><!--END SIDEBAR-->
ممنون درست کردم/دستور رو دقیق جای دستور قبل جایگزین کردم
اگه این هم که تازه داخلش تغییر دادم جواب نداد نمی دونم دیگه باید چه کار کرد ببین.
تو باید دنبال این خط بگردی : wp_list_categories
و در آخر دستورش این رو اضافه کنی &exclude=42,44,46,51,52