کد زیر رو در دو قسمت loop-single.php و loop.php پاک کردم و نام نویسنده ار همه جا پاک شد.
<?php twentyten_posted_on(); ?>
ولی وقتی کد زیر رو پاک می کنم دسته بندی و برچسب ها با هم پاک می شوند!در حالی که من میخوام فقط دسته بندی ها حذف بشوند.
[B]< ?php twentyten_posted_in(); ? >[/B]
< ?php edit_post_link( __( 'Edit', 'twentyten' ), '< span class="edit-link" >', '< /span >' ); ? >
< /div >< !-- .entry-utility -- >
فکر کنم باید توی تابع زیر یک تغییراتی بدم ولی نمی دونم چطور.
// Retrieves tag list of current post, separated by commas.
$tag_list = get_the_tag_list( '', ', ' );
if ( $tag_list ) {
$posted_in = __( 'This entry was posted in %1$s and tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyten' );
} elseif ( is_object_in_taxonomy( get_post_type(), 'category' ) ) {
$posted_in = __( 'This entry was posted in %1$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyten' );
} else {
$posted_in = __( 'Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyten' );
}
// Prints the string, replacing the placeholders.
printf(
$posted_in,
get_the_category_list( ', ' ),
$tag_list,
get_permalink(),
the_title_attribute( 'echo=0' )
);
}
endif;
ممنون میشم راهنمایی بفرمایید.