$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>categories - Please tell how to stop the category from showing up on posts|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

categories - Please tell how to stop the category from showing up on posts

matteradmin9PV0评论

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
Add a comment  | 

1 Answer 1

Reset to default 0

Maybe commenting out that magazine_7_post_item_tag() call?

Post a comment

comment list (0)

  1. No comments so far