jikoyster
Forum Replies Created
-
Forum: Plugins
In reply to: wp_create/wp_insert_category Undefined ErrorI had the same problem and find the answer at taxonomy.php in wp-includes directory.
use wp_insert_term instead
here’s the code:if(!is_term($term, $taxonomy)){ wp_insert_term($term, $taxonomy, $args); }where $term is the category name
and $taxonomy is either ‘tag’ or ‘category’
$args is an array fields for the category same with wp_insert_categoryForum: Fixing WordPress
In reply to: How to Create “Change Password” Page Template?Hi thanks for the response.
I looked at the what’s inside register-plus and find the answer.
I just don’t know if it’s safe to use ‘wp_set_password’ on a template (outside wp-admin). Is it?Forum: Requests and Feedback
In reply to: Possible 2.8 Bugs?me too. Same problems…
1. Flash media uploader and even the browser’s uploader doesn’t work
2. can’t add new category and tags, although i can select existing category on the list but the tags won’t even show the “mostly used/popular tags”
3. toggles on menu doesn’t work as wellif ever it takes long enough for the next version. how do i downgrade back to 2.7?
Forum: Fixing WordPress
In reply to: “Previous” and “Next” on Custom Page Showing Same Postssimply place your navigation inside the loop – before endwhile.