Tagged Questions
0
votes
1answer
34 views
How do I disable the “by author” hyperlink on posts?
I'm trying to disable the "author" hyperlink when making a post, but having no success.
How can I do it?
1
vote
1answer
427 views
How do I create a separate page for each author?
I am working on a website where I have authors listed on a custom-made author's page using code adapted from this site: http://bavotasan.com/2011/an-even-better-author-list-in-wordpress/.
When you ...
0
votes
1answer
175 views
Author template help. How to check if field exists in the profile?
I'm coding my author template.
I want something like this
<?php if(Author filled about me)) { ?>
<div class="title">About me</div>
...
0
votes
1answer
286 views
Guest author's post not display in author template
I am using this filter to display guest author on post, but i want guest author's posts to appear in the author.php template also.
This is my guest author code (inside functions.php).
<?php
...
0
votes
1answer
726 views
Prevent 404 of Author pages without posts
How do I prevent author archives without posts from 404ing?
1
vote
1answer
1k views
How to hide/redirect the author page
I have a website where I let people subscribe. I would like to only show the author page for actual authors who have written a post. I wrote this code that checks for post the problem is I can't use a ...
2
votes
2answers
156 views
How to control template resolution if both Author and Category filter in place?
The following url resolves to the category template:
http://localhost/author/myusername/?category_name=somecategory
I have a category-somecategory.php template and just a generic author.php template. ...