AnsPress_Notification_Hook::ap_user_pages()
Description #
Adds reputations tab in AnsPress authors page.
Source #
File: addons/free/notification.php
public static function ap_user_pages() { anspress()->user_pages[] = array( 'slug' => 'notifications', 'label' => __( 'Notifications', 'anspress-question-answer' ), 'count' => ap_count_unseen_notifications(), 'icon' => 'apicon-globe', 'cb' => [ __CLASS__, 'notification_page' ], 'private' => true, ); }
Expand full source code Collapse full source code View on GitHub: addons/free/notification.php:195
Add your comment