* @license GPL-2.0+ * @link http://wp3.in * @copyright 2014 Rahul Aryan */ // If this file is called directly, abort. if ( ! defined( 'WPINC' ) ) { die; } class AnsPress_User_Page_Answers { /** * Output for profile page * @since 2.0.1 */ public static function output(){ global $answers; $current_user = get_query_var('user'); $answers = new Answers_Query(); echo '
'; /** * ACTION: ap_before * Action is fired before loading AnsPress body. */ do_action('ap_before'); if(!empty($current_user)) include ap_get_theme_location('user-answers.php'); else include ap_get_theme_location('not-found.php'); wp_reset_postdata(); echo '
'; } }