• Hi, I have “By [post_author_posts_link] [post_comments]” designated for the “above content” for my blog post page. This works fine. I designated ” [post_categories] [post_tags]” for the “below content”, but nothing comes up. What do I do?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Support Nick C

    (@modernnerd)

    Hi, @tiger383!

    Can you share a link to your site or reply with the name of the theme you are using, please? I’d be happy to take a look for you.

    Thread Starter tiger383

    (@tiger383)

    Thank you! My site has a custom child theme built on Genesis. Site is still in progress. Here is a link to one of my experimental blog posts:

    https://181.224.137.109/~rohdefin/testing-blog-test/

    Thread Starter tiger383

    (@tiger383)

    I have been experimenting with this. I currently have a link to Art Blog and “Posted By”[post_author_posts_link] designated for the top and [post_categories] [post_tags] designated for the bottom.

    Thread Starter tiger383

    (@tiger383)

    Do you have any idea what I can do to fix this? I appreciate any help you can give me. Thanks

    Plugin Support Nick C

    (@modernnerd)

    Thanks for sharing the link, @tiger383.

    Your custom theme will need to add the entry meta below blog posts before the meta contents can be changed to [post_categories] [post_tags] via Simple Edits.

    If you have this code in your current theme, you could remove it to add the entry footer back:

    remove_action( 'genesis_entry_footer', 'genesis_entry_footer_markup_open', 5 );
    remove_action( 'genesis_entry_footer', 'genesis_entry_footer_markup_close', 15 );
    remove_action( 'genesis_entry_footer', 'genesis_post_meta' );

    Or add it to specific templates via:

    add_action( 'genesis_entry_footer', 'genesis_entry_footer_markup_open', 5 );
    add_action( 'genesis_entry_footer', 'genesis_entry_footer_markup_close', 15 );
    add_action( 'genesis_entry_footer', 'genesis_post_meta' );
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Meta shortcodes work for above content but not below’ is closed to new replies.