AnsPress_Profile_Hooks::question_page()
Description #
Display user questions page.
Source #
File: addons/free/profile.php
public static function question_page() { $user_id = ap_current_user_id(); $args['ap_current_user_ignore'] = true; $args['author'] = $user_id; /** * Filter authors question list args * * @var array */ $args = apply_filters( 'ap_authors_questions_args', $args ); anspress()->questions = new Question_Query( $args ); include ap_get_theme_location( 'addons/user/questions.php' ); }
Expand full source code Collapse full source code View on GitHub: addons/free/profile.php:290
Add your comment