Tagged Questions
0
votes
1answer
49 views
How can i list random author?
Im listing current category of all author list but I want to list random author list from current category.
I was try 'order' => 'RAND', RAND code its not worked.
My Code:
function ...
1
vote
1answer
66 views
wordpress plugin that show my reputation (points) in any stackexchange project in my wordpress blogs
I'm seeking for a plugin show my points (reputation) of Stackexchange (not Stackoverflow) in my Wordpress blogs.
or other projects in stackexchange like :
Superuser
Security
Serverfault
SharePoint
...
0
votes
1answer
39 views
Create pages for authors
I have a pretty good question here. I would like to create a hidden page on my wordpress blog for each user as they are registered. I already have most of the code of what needs to be put on the page ...
0
votes
2answers
32 views
why do I have to use required parametres?
Why, when I want to use
add_filter( 'author_link', 'foo', 10, 3 );
function foo ( $link, $author_id, $author_nicename ) {}
I have to use 3 required parametres?
Why cant I do this:
add_filter( ...
0
votes
1answer
152 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
2answers
212 views
Comments do not respect display_name setting, how to make plugin to overcome this
When I post something on Wordpress, it's posted with my display name. However if I change my display name, posts posted by me will be updated with the new author. Comments will stay with the old ...
0
votes
2answers
310 views
get author of published post
I am using the publish_post action to run some checks on a user after their post is published:
$author_ID = ????
add_action('publish_post', 'rhb_check_current_user', 10, $author_ID);
How can I get ...
