Skip to content

Instantly share code, notes, and snippets.

  • Save Mashpy/d4ddd51834b892b3e118 to your computer and use it in GitHub Desktop.
Save Mashpy/d4ddd51834b892b3e118 to your computer and use it in GitHub Desktop.
if ( current_user_can( 'manage_options' ) ) {
echo "do something";
}
প্লাগিনে wp_current_user নিয়ে সমস্যা হতে পারে। সে জন্য এটা ব্যবহার করা যেতে পারে।
if(!function_exists('wp_get_current_user')) {
include(ABSPATH . "wp-includes/pluggable.php");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment