سلام میشه کاری کرد که برچسبهای سایتم فقط توی ادامه ی مطلب نشون داده بشه ؟؟
یعنی برچسب هایی که برای مطالبم میزارم توی صفحه ی اصلی نشون داده نشه
سلام میشه کاری کرد که برچسبهای سایتم فقط توی ادامه ی مطلب نشون داده بشه ؟؟
یعنی برچسب هایی که برای مطالبم میزارم توی صفحه ی اصلی نشون داده نشه
بله. شمار به راحتی میتونید با حذف قطعه کد مربوط به تگ ها در index.php این کار رو انجام بدید.
خب میشه کامل بهم یاد بدین ؟؟
کسی بلد نیست ؟؟؟؟؟؟؟؟؟؟
تابع فراخوانی تگ ها را از ایندکس پاک کن.
تابع رو در گوگل سرچ کن.
باور کنید کل ایندکسو زیر و رو کردم ولی نتونستم کاری کنم که برچسبهای سایتم توی ادامه ی مطلب نمایش داده بشه
هرکی بلده لطفا کامل بهم توضیح بده
اینم کد ایندکس پی اچ پی سایتم
خواهشا اگه بلدید درستش کنید برام
<?php get_header(); ?>
<div class="art-layout-wrapper">
<div class="art-content-layout">
<div class="art-content-layout-row">
<div class="art-layout-cell art-sidebar1">
<?php get_sidebar('default'); ?>
<div class="cleared"></div>
</div>
<div class="art-layout-cell art-content">
<?php get_sidebar('top'); ?>
<?php
if(have_posts()) {
/* Display navigation to next/previous pages when applicable */
if ( theme_get_option('theme_' . (theme_is_home() ? 'home_' : '') . 'top_posts_navigation' ) ) {
theme_page_navigation();
}
/* Start the Loop */
while (have_posts()) {
the_post();
get_template_part('content', get_post_format());
}
/* Display navigation to next/previous pages when applicable */
if (theme_get_option('theme_bottom_posts_navigation')) {
theme_page_navigation();
}
} else {
theme_404_content();
}
?>
<?php get_sidebar('bottom'); ?>
<div class="cleared"></div>
</div>
<div class="art-layout-cell art-sidebar2">
<?php get_sidebar('secondary'); ?>
<div class="cleared"></div>
</div>
</div>
</div>
</div>
<div class="cleared"></div>
<?php get_footer(); ?>
اقا اصلا هرکی بتونه مشکلمو حل کنه بهش یه پاداش میدم مثلا اینجا انجمن ورد پرسه ؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟
پس چرا مشکلمو حل نمیکنید ؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟
مثل اینکه کسی نمیتونه کمکم کنه
از این به بعد هرکی بتونه این مشکلمو حل کنه 2000 تومن شارژ ایرانسل بهش میدم
بازم کسی بلد نیست ؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟؟
سلام و درود.
فایل content.php را قرار بدید تا دوستان کمک کنند.
شما در loop دنبال the_tags(); بگردید و پاکش کنید. یعنی کد زیر رو پاک کنید:
<?php the_tags(); ?>
همین
rasoulrahimi گفت:
شما در loop دنبال the_tags(); بگردید و پاکش کنید. یعنی کد زیر رو پاک کنید:
<?php the_tags(); ?>
همین
اصلا قالبم چنین فایلی نداره
mehdi370 گفت:
سلام و درود.
فایل content.php را قرار بدید تا دوستان کمک کنند.
بفر مایید
<?php
/**
*
* content*.php
*
* The post format template. You can change the structure of your posts or add/remove post elements here.
*
* 'id' - post id
* 'class' - post class
* 'thumbnail' - post icon
* 'title' - post title
* 'before' - post header metadata
* 'content' - post content
* 'after' - post footer metadata
*
* To create a new custom post format template you must create a file "content-YourTemplateName.php"
* Then copy the contents of the existing content.php into your file and edit it the way you want.
*
* Change an existing get_template_part() function as follows:
* get_template_part('content', 'YourTemplateName');
*
*/
global $post;
theme_post_wrapper(
array(
'id' => theme_get_post_id(),
'class' => theme_get_post_class(),
'thumbnail' => theme_get_post_thumbnail(),
'title' => 'ID ) . '" rel="bookmark" title="' . strip_tags(get_the_title()) . '">' . get_the_title() . '',
'heading' => theme_get_option('theme_'.(is_single()?'single':'posts').'_article_title_tag'),
'before' => theme_get_metadata_icons( 'date,author,edit', 'header' ),
'content' => theme_get_excerpt(),
'after' => theme_get_metadata_icons( 'category,tag,comments', 'footer' )
)
);
?>
خب حالا هر کاری گفتید انجام دادم فقط سریعتر درستش کنید
شما این رو امتحان کن:
<?php
/**
*
* content*.php
*
* The post format template. You can change the structure of your posts or add/remove post elements here.
*
* 'id' - post id
* 'class' - post class
* 'thumbnail' - post icon
* 'title' - post title
* 'before' - post header metadata
* 'content' - post content
* 'after' - post footer metadata
*
* To create a new custom post format template you must create a file "content-YourTemplateName.php"
* Then copy the contents of the existing content.php into your file and edit it the way you want.
*
* Change an existing get_template_part() function as follows:
* get_template_part('content', 'YourTemplateName');
*
*/
global $post;
theme_post_wrapper(
array(
'id' => theme_get_post_id(),
'class' => theme_get_post_class(),
'thumbnail' => theme_get_post_thumbnail(),
'title' => '<a href="'.get_permalink($post->ID).'" rel="bookmark" title="'.get_the_title().'">'.get_the_title().'</a>',
'heading' => theme_get_option('theme_'.(is_single()?'single':'posts')),
'before' => theme_get_metadata_icons( 'date,author,edit', 'header' ),
'content' => theme_get_excerpt(),
'after' => theme_get_metadata_icons( 'category,comments', 'footer' )
)
);
?>