Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter clarkargus

    (@clarkargus)

    I found the error in the archive.php file in my child theme. Deleted that file and the issue is now resolved.

    Hello,

    I am having the same issue after updating from 0.5.8 to 0.6.0, I am on the most current version of WP.

    After the update this code:

    <?php echo apply_atomic_shortcode( 'entry_title', '[entry-title]' ); ?>
    <?php echo apply_atomic_shortcode( 'byline', '<div class="byline">' . __( 'in [entry-terms taxonomy="category" before=""] [entry-edit-link before=" · "]', 'origin' ) . '</div>' ); ?>

    no longer works and it just shows:

    [entry-title]
    in [entry-terms taxonomy=”category” before=””] [entry-edit-link before=” · “]

    I have many many custom pages in my child theme, will this be fixed in an update?

    Thank you!
    Donna

    Donna, I replaced that block of code with this from post.php in the parent theme:

    <h1 class=”post-title entry-title”><?php the_title(); ?></h1>

    <div class=”byline”>“><?php echo get_the_date(); ?> · by <?php the_author_posts_link(); ?> · in <?php the_category(‘, ‘); ?> <?php edit_post_link(); ?> </div>

    You may need to do that in all custom pages for your child theme.

    Thanks niccigilland, I was hoping to not have to do that, but it looks like it might be the only way. Thank you!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Titles appearing as [entry-title] on category blog page after updating theme’ is closed to new replies.