How to remove Profile Picture section or the message “You can change your profile picture on Gravatar.”

To remove the profile picture row of the table (which includes the gravatar link): jQuery( “tr.user-profile-picture” ).remove(); To remove that entire “about yourself” table: jQuery( “tr.user-profile-picture” ).parents(“table:first”).remove(); Use this type of jQuery call, don’t try to get fancy with the loop. This is on WP 4.4; earlier versions may have different HTML class names for … Read more

Best practices for A/B testing?

This is not a straight WordPress solution but I would recommend a/b testing feature found in the Google website optimizer. http://www.google.com/websiteoptimizer/b/index.html. It works with your analytics account. You just need to create two (or more) pages in WordPress.

Custom category order with get_categories

Exact order by category id on get_categories @EliChan, by using get_categories, I don’t think it’s possible to exact order by id if you use exclude. It is better if use include as parameter of ids order and orderby with value include. $args = array( ‘hide_empty’ => 0, ‘orderby’ => ‘include’, ‘include’ => array( 47, 44, … Read more