admin管理员组文章数量:1130349
Please tell me how to remove the category hence, it does not show up on posts. my content.php file is given below...which contains the code for showing up meta. but I am not able to figure out the file...please help
<?php
/**
* Template part for displaying posts
*
* @link /
*
* @package Magazine 7
*/
?>
<?php if (is_singular()) : ?>
<div class="entry-content">
<?php
the_content(sprintf(
wp_kses(
/* translators: %s: Name of current post. Only visible to screen readers */
__('Continue reading<span class="screen-reader-text"> "%s"</span>', 'magazine-7'),
array(
'span' => array(
'class' => array(),
),
)
),
get_the_title()
)); ?>
<?PHP if (is_single()): ?>
<div class="post-item-metadata entry-meta">
<?php magazine_7_post_item_tag(); ?>
</div>
<?php endif; ?>
<?php
the_post_navigation( array(
'prev_text' => __( '<span class="em-post-navigation">Previous</span> %title', 'magazine-7' ),
'next_text' => __( '<span class="em-post-navigation">Next</span> %title', 'magazine-7' ),
'in_same_term' => true,
'taxonomy' => __( 'category', 'magazine-7' ),
'screen_reader_text' => __( 'Continue Reading', 'magazine-7' ),
) );
?>
<?php wp_link_pages(array(
'before' => '<div class="page-links">' . esc_html__('Pages:', 'magazine-7'),
'after' => '</div>',
));
?>
</div><!-- .entry-content -->
"
data-mh="archive-layout-grid">
" >
Please tell me how to remove the category hence, it does not show up on posts. my content.php file is given below...which contains the code for showing up meta. but I am not able to figure out the file...please help
<?php
/**
* Template part for displaying posts
*
* @link https://developer.wordpress/themes/basics/template-hierarchy/
*
* @package Magazine 7
*/
?>
<?php if (is_singular()) : ?>
<div class="entry-content">
<?php
the_content(sprintf(
wp_kses(
/* translators: %s: Name of current post. Only visible to screen readers */
__('Continue reading<span class="screen-reader-text"> "%s"</span>', 'magazine-7'),
array(
'span' => array(
'class' => array(),
),
)
),
get_the_title()
)); ?>
<?PHP if (is_single()): ?>
<div class="post-item-metadata entry-meta">
<?php magazine_7_post_item_tag(); ?>
</div>
<?php endif; ?>
<?php
the_post_navigation( array(
'prev_text' => __( '<span class="em-post-navigation">Previous</span> %title', 'magazine-7' ),
'next_text' => __( '<span class="em-post-navigation">Next</span> %title', 'magazine-7' ),
'in_same_term' => true,
'taxonomy' => __( 'category', 'magazine-7' ),
'screen_reader_text' => __( 'Continue Reading', 'magazine-7' ),
) );
?>
<?php wp_link_pages(array(
'before' => '<div class="page-links">' . esc_html__('Pages:', 'magazine-7'),
'after' => '</div>',
));
?>
</div><!-- .entry-content -->
"
data-mh="archive-layout-grid">
" >
Share
Improve this question
edited Jan 8, 2019 at 12:08
Anshul Kashyap
asked Jan 8, 2019 at 11:36
Anshul KashyapAnshul Kashyap
12 bronze badges
1 Answer
Reset to default 0Maybe commenting out that magazine_7_post_item_tag() call?
Please tell me how to remove the category hence, it does not show up on posts. my content.php file is given below...which contains the code for showing up meta. but I am not able to figure out the file...please help
<?php
/**
* Template part for displaying posts
*
* @link /
*
* @package Magazine 7
*/
?>
<?php if (is_singular()) : ?>
<div class="entry-content">
<?php
the_content(sprintf(
wp_kses(
/* translators: %s: Name of current post. Only visible to screen readers */
__('Continue reading<span class="screen-reader-text"> "%s"</span>', 'magazine-7'),
array(
'span' => array(
'class' => array(),
),
)
),
get_the_title()
)); ?>
<?PHP if (is_single()): ?>
<div class="post-item-metadata entry-meta">
<?php magazine_7_post_item_tag(); ?>
</div>
<?php endif; ?>
<?php
the_post_navigation( array(
'prev_text' => __( '<span class="em-post-navigation">Previous</span> %title', 'magazine-7' ),
'next_text' => __( '<span class="em-post-navigation">Next</span> %title', 'magazine-7' ),
'in_same_term' => true,
'taxonomy' => __( 'category', 'magazine-7' ),
'screen_reader_text' => __( 'Continue Reading', 'magazine-7' ),
) );
?>
<?php wp_link_pages(array(
'before' => '<div class="page-links">' . esc_html__('Pages:', 'magazine-7'),
'after' => '</div>',
));
?>
</div><!-- .entry-content -->
"
data-mh="archive-layout-grid">
" >
Please tell me how to remove the category hence, it does not show up on posts. my content.php file is given below...which contains the code for showing up meta. but I am not able to figure out the file...please help
<?php
/**
* Template part for displaying posts
*
* @link https://developer.wordpress/themes/basics/template-hierarchy/
*
* @package Magazine 7
*/
?>
<?php if (is_singular()) : ?>
<div class="entry-content">
<?php
the_content(sprintf(
wp_kses(
/* translators: %s: Name of current post. Only visible to screen readers */
__('Continue reading<span class="screen-reader-text"> "%s"</span>', 'magazine-7'),
array(
'span' => array(
'class' => array(),
),
)
),
get_the_title()
)); ?>
<?PHP if (is_single()): ?>
<div class="post-item-metadata entry-meta">
<?php magazine_7_post_item_tag(); ?>
</div>
<?php endif; ?>
<?php
the_post_navigation( array(
'prev_text' => __( '<span class="em-post-navigation">Previous</span> %title', 'magazine-7' ),
'next_text' => __( '<span class="em-post-navigation">Next</span> %title', 'magazine-7' ),
'in_same_term' => true,
'taxonomy' => __( 'category', 'magazine-7' ),
'screen_reader_text' => __( 'Continue Reading', 'magazine-7' ),
) );
?>
<?php wp_link_pages(array(
'before' => '<div class="page-links">' . esc_html__('Pages:', 'magazine-7'),
'after' => '</div>',
));
?>
</div><!-- .entry-content -->
"
data-mh="archive-layout-grid">
" >
Share
Improve this question
edited Jan 8, 2019 at 12:08
Anshul Kashyap
asked Jan 8, 2019 at 11:36
Anshul KashyapAnshul Kashyap
12 bronze badges
1 Answer
Reset to default 0Maybe commenting out that magazine_7_post_item_tag() call?
本文标签: categoriesPlease tell how to stop the category from showing up on posts
版权声明:本文标题:categories - Please tell how to stop the category from showing up on posts 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:https://it.en369.cn/questions/1749033277a2306010.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。


发表评论