Recover Same WordPress Admin Password

In general, no. This is not possible. The password is btw, not encrypted only once, but twice with md5. There are some cases where you type the password to the database, and for the short time, it will not be encrypted at all. 🙂 The very first time the admin authenticate itself again, the password … Read more

Remove category number fill

In order to override the default of per page, you can set the number to ” to instruct the query to return all categories. Add the following code to your functions.php file. add_filter( ‘get_terms_args’, ‘show_all_categories_admin_nav_menu’, 10, 2); function show_all_categories_admin_nav_menu( $args, $taxonomies ) { if( reset($taxonomies) === ‘category’ ) { $args[‘number’] = ”; } return $args; … Read more