theclimbergirl
Member
Posted 4 months ago #
Hi there!
I've previously had wordpress themes that had an obvious off / on for displaying the author / user's "biographical info" at the end of post pages, and I can't find it in Twenty Twelve. Is that feature available somewhere and I'm just not seeing it?
Thank you!
Sara
TwentyTwelve has that, but it's too smart, it will appear only if you got at least 2 authors in that site. There are 3 ways I can think of to make it appear.
1.
Just register another user and publish at least one post and there you got it.
2.
Copy over content.php to your childtheme and delete out this
&& is_multi_author() in around line 47
3.
Put this add_filter( 'is_multi_author', '__return_true' );
in your childtheme's function.php
ivanjunge
Member
Posted 1 month ago #
Mamphey
Member
Posted 1 month ago #
Which one of the three options worked for you ivanjunge?
mejpark
Member
Posted 1 month ago #
Thanks for sharing these solutions paulwpxp. I have just posted step-by-step instructions explaining how to display post author on single-user Twenty Twelve WordPress blog.