The author tag has no wiki summary.
0
votes
3answers
178 views
Getting author URL outside the loop
I am trying to get author information in my header.php.
This is what I use to display the name and it works like a charm:
<?php $author_id=$post->post_author; ?><?php echo ...
0
votes
2answers
44 views
Get current custom user taxonomy
I’m using the plugin User Groups which lets me group users with categories. The plugin is working essentially the same as using the manual method (custom user taxonomies) described by Justin Tadlock ...
0
votes
2answers
145 views
Get all posts by post_author
I am creating a back-end dashboard where I need to show all the post assigned to current user by the wp admin.
I assign user role to Author and while creating post (as a wp
admin) just assign ...
0
votes
2answers
73 views
Author.php display profile for all types of users
I'm using wp-usersonline plugin with user links, when you click for subscribers it goes to a not found page but works fine for authors, im thinking is there a way to redirect subscribers to a profile ...
0
votes
2answers
136 views
Can't change author to myself after post published
I am having this weird issue wherein if I create and publish a post, I can/am attributed as the author. However, if my editor creates a post and tries to add me as an author, I don't appear. It ...
0
votes
2answers
143 views
How to group the loop posts in a particular by author?
I have links going to category pages on a WordPress blog. These category pages show all the posts that are in that category and sub-categories. I want to group these lists by the authors.
I guess ...
3
votes
1answer
180 views
How to show list of posts by author and category?
Let three categories and their IDs:
cat1 = 1 (parent)
cat2 = 2 (child of cat1, parent of cat3)
cat3 = 3 (child of cat2)
Let each category has 3 posts, they are: post1, post2, post3.
And each posts ...
2
votes
1answer
64 views
How can I list random authors from current post category?
The following lists authors of the current category.
But I want this to be a list of 6 random authors from current post category.
foreach((get_the_category()) as $category) {
$postcat= ...
1
vote
1answer
36 views
search posts by post author name
I want to search posts publish by particular author. for this purpose i add a filter in funcions.php as
function wpse_29570_where_filter($where){
global $wpdb;
if( is_search() ) {
...
1
vote
1answer
48 views
Make user as Default contributor for all Blog Posts
I need to get a different requirement, where a particular user need to set as default contributor.
I'm not sure whether wordpress actually makes a user default. But for now i need to make a user as ...
1
vote
1answer
29 views
Post list based on the page author
I'm sorry if this question is already been done, but I couldn't solve my problem after reading similar questions.
I would like to have customized author pages, in which each author can write text and ...
1
vote
1answer
80 views
Change get_current_user_id code to the author's profile
I've been modifying a long abandoned plugin project that provides a Stackoverflow inspired badge system for Wordpress. I have upgraded some of its code so it functions with the new Wordpress version.
...
1
vote
1answer
190 views
How to let a user choose an authors and save it to the database?
I have a multi-author Wordpress site which reads different rss feeds and posts them to my page. I was wondering if it is possible to make a code that would provide an opportunity to registered user ...
0
votes
1answer
19 views
Authors Ability to Review Post from Contributors
I am developing a CMS using WordPress. I have different user roles. I have different departments and I want users (Role of contributors) to post items that would be submitted for review by Users ...
0
votes
1answer
44 views
Author template - separate custom post type by custom taxonomy term for $curauth
Basically I have a post type called photograph, I then have a Taxonomy group called "Subject" and several tax terms i.e. Abstract, freeze frame etc (Approx 18 in total) under that Taxonomy group.
I ...
0
votes
1answer
47 views
Calling a custom profile field only it it exists
I've used this code to show custom fields if they're filled in a post using Custom Field Suite Plugin
<?php if($cfs->get('whatliked')){?>
<?php echo $cfs->get('whatliked'); ?>
...
0
votes
1answer
65 views
Getting list of top 10 users and sort on last name
I would like to display a list of the top 10 authors based on the amount of posts that they have, and then sort them on last name. To my knowledge, this is not trivial since the last name of a user ...
0
votes
1answer
25 views
if else for custom $curauth-> field
So I have a custom field on the author page, where a user uploads a image which will be used as a background image on their author page. I've setup up everything except I'm not sure how to setup a ...
0
votes
1answer
114 views
Display custom post counts for author , not default posts
<?php
global $wp_query;
$curauth = $wp_query->get_queried_object();
$post_count = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->posts WHERE post_author = '" . $curauth->ID . ...
0
votes
1answer
96 views
Custom size for image uploaded to custom field in user profile?
I'm using advanced custom fields and set an image upload field in user profiles. I'm using this image a few places on the website and need to set a custom size for it on some pages.
If I set ...
0
votes
1answer
73 views
How to make a relationship between books and authors?
I have a book category, but now I would like each book could be concatenated with the author profile page. And the tab for the author to show, in addition to text, the list of books he has written.
...
0
votes
1answer
230 views
Display edit link if post author is current user
I am creating an author.php page and listing all the posts from an author. Although admins can see the posts' edit links i want to echo the link if logged in user is the current user
for example
if ...
0
votes
1answer
64 views
Get Comment Author ID on the fly while posting
I am adding custom data to custom table while author posting a comment. Please find my code in my own answer here http://wordpress.stackexchange.com/a/85109/9821
Now I want to add one more column of ...
0
votes
1answer
101 views
Display posts from an author using search parameters (not author template/query_posts)
Is there a way to retrieve a list of all the posts by an author using search (example: ?s&author=xxx)? I can't use query_posts or author template (don't ask why, take it as a condition).
And it ...
0
votes
1answer
57 views
Show last post of employee in his profile page
I have built a wordpress theme in which I have listed employees of the organization via custom post type. And I am displaying each employee via custom post type.
The employees listed are authors in ...
0
votes
1answer
86 views
No authors in change author dropdown
I have added a custom post type "Review", and a custom role "Reviewer". The issue is when logged as admin I take review which current author is admin and I want to change author to a Reviewer I have ...
0
votes
1answer
54 views
Check if post was modified by editor different than post author
Is there a way to check if a post written by user X is modified by a different user (for example admin, or an editor)?
What I want to achieve: I have a site where posts are submitted for publication ...
0
votes
1answer
81 views
Author page points to 404 error page
I am having a membership site in wordpress where there are more than 10K users. Now when the user having a single word user_nicename ( http://example.com/author/james ) try to access their respective ...
0
votes
1answer
72 views
Return one of user's post from a category in user's profile
I'm working on a site which requires requires users to submit a custom profile of sorts, and then one post in a specific category (all of that is being done through Gravity Forms and their User ...
0
votes
1answer
68 views
Exclude Authors based off date of last post
I have several writers that range from frequent to one-time writers for my blog. On my Author page, I would like to separate out writers that have not posted an article in 6 months. It would be nice ...
0
votes
1answer
46 views
All Posts Linking to Author Posts directly
I want to do "All Posts" hyperlinked to Author-Link so when user clicked All posts then user will be directed to Author's all posts, instead of "All Posts of: Author-Link"
I don't want repeatation of ...
0
votes
1answer
61 views
Change Post and CPT author on the fly while publish the post
I am developing my site and require to change post author id on the fly while publishing.
All post will be write and publish by admin but as content provided by different author and need to change ...
0
votes
1answer
91 views
Profile Field In Admin Bar
I have added a field named "Current Status" in the user profile where the users fill their information e.g. E-mail, Website etc. How can I make this field displayed only for authors and also display ...
0
votes
1answer
154 views
How to set/change another post author by custom fields or something else?
I need help! (sorry for my poor English, I'm from Russia)
How I can to set/change another post author by custom fields or something else?
For example:
I want to public post, but define another post ...
0
votes
1answer
156 views
WordPress Authors not showing with User Submitted Posts plugin
I'm using the User Submitted Post plugin to allow people to post to my blog. However when i run <?php wp_list_authors(); ?> I see none of the authors listed on the posts page in the dashboard. ...
-1
votes
1answer
68 views
One author not showing in Author drop down list while editing page
USER01 is not showing in Author drop down list while editing a Page if he's in the my custom ROLE "mycustomrole".
If I change his role as an AUTHOR, and add the very same custom and non custom ...
-1
votes
1answer
360 views
Replace author with custom field in feed
I'm doing some customization on a theme that was previously written by someone else. Rather than use multiple user accounts to assign articles, they created a taxonomy for the custom author name(s) so ...
1
vote
0answers
36 views
Change base URL of pages created by certain users
Currently on wordpress all pages are created under the base URL (example.com/{PAGE}). Currently I am aware you can change the permalink of posts to example.com/{author}/{POST} but can this also be ...
1
vote
0answers
39 views
Advanced author permalinks
I'm trying to build permalink structure for author archives that would allow me to display different custom post types posts in 'subpages/subarchives' of author archive.
So the idea is to change ...
1
vote
0answers
34 views
Making Author a type in field
I'm working on a site where the posts will be mostly by one off contributing authors (submited writing to our editors). What would the best way to be able to write a value into the author field of a ...
1
vote
0answers
114 views
How to set post author to custom post field via front-end form?
hope someone can help.
I have my WP install configured to capture posts via a front-end form. Users do not log in, which is an explicit requirement. The author should be set based on a custom post ...
0
votes
0answers
11 views
author ROLE is showing NONE on admin panel
recently i have migrate my wp blog to a new server. but on the new server everything is working fine. but my author are not able to login. then i checked the admin panel all user. there i can see lots ...
0
votes
0answers
20 views
wp user role,username and email id is missing on wp admin panel
i am facing a totally strange problem on my wordpress blog. recently i have migrate my wp blog to a new server. but on the new server everything is working fine. but my author are not able to login. ...
0
votes
0answers
11 views
Filter by Author on Category Pages
I'm looking for a solution to filter/sort posts by author on category pages/archive pages, ideally by means of a drop-down menu.
I've searched the Wordpress plugin repository but cannot find any ...
0
votes
0answers
32 views
Resize and crop image during upload
How to add more function to resize and crop image during upload?
I want to creat a avatar upload form on author profile.
And size of avatar: 150x150
If file size have width > height => resize by ...
0
votes
0answers
24 views
Display posts on a separate page from certain authors?
I've been working on this for days. I've tried the WP codex, Google searching, etc, and I know I'm not doing something right but my patience has run out :( .
I have 3 authors. I am trying to display ...
0
votes
0answers
47 views
Show all media by an user in his/her author.php page, how to edit my code
I've a default code that shows all the media uploaded in my site
<?php
$args = array( 'post_type' => 'attachment', 'numberposts' => -1,
'post_status' => 'any', 'post_parent' => ...

