• Resolved MLa00

    (@mla00)


    How can I remove text “This entry was posted in . Bookmark the permalink” from posts?
    I have made child theme but I haven’t found where to edit that one.

    Thanks ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter MLa00

    (@mla00)

    Found the place to edit in content-single.php.
    Seems to work ??

    How exactly did you do it? Thanks in advance for your reply!

    Thread Starter MLa00

    (@mla00)

    I just commented out following code in my child theme content-single.php:
    /*if ( ! kaira_categorized_blog() ) {
    // This blog only has 1 category so we just need to worry about tags in the meta text
    if ( ” != $tag_list ) {
    $meta_text = __( ‘This entry was tagged %2$s. Bookmark the permalink.’, ‘albar’ );
    } else {
    $meta_text = __( ‘Bookmark the permalink.’, ‘albar’ );
    }

    } else {
    // But this blog has loads of categories so we should probably display them here
    if ( ” != $tag_list ) {
    $meta_text = __( ‘This entry was posted in %1$s and tagged %2$s. Bookmark the permalink.’, ‘albar’ );
    } else {
    $meta_text = __( ‘This entry was posted in %1$s. Bookmark the permalink.’, ‘albar’ );
    }

    } */ // end check for categories on this blog

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to remove This entry was posted in..’ is closed to new replies.