AnsPress_Profile_Hooks::sub_page_template()
Description #
Render sub page template.
Source #
File: addons/free/profile.php
public static function sub_page_template() { $current = get_query_var( 'user_page', ap_opt( 'user_page_slug_questions' ) ); $current_page = ap_search_array( anspress()->user_pages, 'rewrite', $current ); if ( ! empty( $current_page ) ) { $current_page = $current_page[0]; // Callback. if ( isset( $current_page['cb'] ) && is_array( $current_page['cb'] ) && method_exists( $current_page['cb'][0], $current_page['cb'][1] ) ) { call_user_func( $current_page['cb'] ); } elseif ( function_exists( $current_page['cb'] ) ) { call_user_func( $current_page['cb'] ); } else { _e( 'Callback function not found for rendering this page', 'anspress-question-answer' ); // xss okay. } } }
Expand full source code Collapse full source code View on GitHub: addons/free/profile.php:269
Add your comment