show count author post today

Basic logic behind what you want: Find out the actual date e.g. $date_now Get posts by author http://codex.wordpress.org/Function_Reference/get_posts_by_author_sql that have the same publish date as $date_now (you need to do a sql query for that). count the rows that were returned and echo the output.

How change menu for each user in plugin?

Create a menu for each type of user in Dashboard >> Appearence >> Menus >> create a new menu (eg http://example.com/wp-admin/nav-menus.php?action=edit&menu=0) Then add a function to your theme’s functions.php to switch the menus. Something like as follows: add_filter(‘wp_nav_menu_args’, ‘wp_nav_menu_args_filter’); function wp_nav_menu_args_filter($args = array()) { if (is_user_logged_in) { // Menu for Logged In Users $args[‘menu’] = … Read more

My posts section for logged in user

You don’t need to put your code in your theme functions. This needs to be a custom page template. Learn about page templates here: http://codex.wordpress.org/Page_Templates Your code is custom loop so you need to also learn about loops and then using WP_Query so next stop will be here: http://codex.wordpress.org/The_Loop Then read this page: http://codex.wordpress.org/Class_Reference/WP_Query After … Read more

Migrating Users along with their password

I imported the 2 tables in the target database and faced permission issue while logging in to the target site , then I followed this site http://beconfused.com/2007/how-to-solve-you-do-not-have-sufficient-permissions-to-access-this-page-in-wordpress/ and it fixed the issue.