Profile::question_page()
Description #
Display user questions page.
Source #
File: addons/profile/profile.php
public 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/profile/profile.php:359
Add your comment