hi
i am trying to make a theme look like my wp site
in wp i use this code to show profile link to members and login lonk to others
<?php if ( is_user_logged_in() ) { echo ' <div class="users-dashboard"> خوش آمدید , <a href="http://supportnotebook.ir/profile">پنل کاربری شما</a> </div> '; } else { echo ' <div class="users-dashboard"> <a href="http://supportnotebook.ir/login">ورود - عضویت</a> </div> '; }
how can i use if ( is_user_logged_in() ) in q2a theme too ?
thanks
You need to require the app/users.php file (Q2A v1.7) and then use the qa_is_logged_in() function.
require_once QA_INCLUDE_DIR.'app/users.php'; if (qa_is_logged_in()) { echo 'Logged in!'; } else { echo 'Not logged in :('; }
Welcome to the Q&A site for Question2Answer.
If you have a question about Q2A, please ask here, in English.
To report a bug, please create a new issue on Github or ask a question here with the bug tag.
If you just want to try Q2A, please use the demo site.