2,169 reputation
1616
bio website webeo.ch
location Switzerland
age 26
visits member for 2 years, 2 months
seen 14 hours ago
stats profile views 82

This is a story about four people named Everybody, Somebody, Anybody and Nobody. There was an important job to be done and Everybody was sure that Somebody would do it. Anybody could have done it, but Nobody did it. Somebody got angry about that, because it was Everybody’s job. Everybody thought Anybody could do it, but Nobody realized that Everybody wouldn’t do it. It ended up that Everybody blamed Somebody whend Nobody did what Anybody could have done.


May
6
revised Extending xml rpc - best practice
added 125 characters in body
May
6
comment Extending xml rpc - best practice
@Nic You're probably calling your XMLRPC class too early. You could attach it to the action hook wp or simply add include_once(ABSPATH . WPINC . '/class-IXR.php'); and include_once(ABSPATH . WPINC . '/class-wp-xmlrpc-server.php'); above your XMLRPC class.
Mar
9
awarded  Yearling
Oct
31
awarded  Revival
Aug
21
awarded  Unsung Hero
Aug
14
awarded  Enlightened
Aug
14
awarded  Nice Answer
Aug
11
comment permalink error when modifying sanitize_title_with_dashes function
@PamApple I've edited my answer. Maybe this brings you a bit further.
Aug
11
revised permalink error when modifying sanitize_title_with_dashes function
added 575 characters in body
Aug
11
answered permalink error when modifying sanitize_title_with_dashes function
Aug
11
comment How do I get topic-id or topic-no in bbpress?
<?php echo bbp_topic_id(); ?> ?
Aug
11
answered How to get an array of post data from wp_query result?
Aug
11
comment How to get an array of post data from wp_query result?
It's no clear what you want. Please explain your main goal a bit better and post your current state of code here.
Aug
8
answered How to hide child categories from displaying
Jul
30
comment wp.getUsers XML-RPC method is returning only 50 users, how can i get all the users
Please create a new question for each topic next time. wp.getComments displays only comments from the builtin comments taxonomy which is used by the posttype post. If you want to display terms of another, custom taxonomy, you have to write your own xml-rpc method. I've just looked in the plugin you're using. There you have a wp.getTerms method which you can probably use for this.
Jul
25
comment wp.getUsers XML-RPC method is returning only 50 users, how can i get all the users
@Ravi Of course it's legal, the plugin is released under GPLv2+. The only reason against altering existing code: It is not update safe. Everytime you update the plugin, you also have to alter the code again. You could contact the developer and ask for a fix in the plugin itself.
Jul
25
comment wp.getUsers XML-RPC method is returning only 50 users, how can i get all the users
@Ravi I've edited my answer. Hope this helps.
Jul
25
revised wp.getUsers XML-RPC method is returning only 50 users, how can i get all the users
added 974 characters in body
Jul
25
answered wp.getUsers XML-RPC method is returning only 50 users, how can i get all the users
Jul
24
comment Force category choice before creating new post?
@JanFabry Great solution. Just what I'm looking for. Thanks!