Reputation::add_to_settings_page( array $groups )
Description #
Add tags settings to features settings page.
Parameters #
- $groupsarray (Required) Features settings group.
Source #
File: addons/reputation/reputation.php
90 91 92 93 94 95 96 97 | public function add_to_settings_page( $groups ) { $groups [ 'reputation' ] = array ( 'label' => __( 'Reputation' , 'anspress-question-answer' ), 'info' => __( 'Reputation event points can be adjusted here :' , 'anspress-question-answer' ) . ' <a href="' . esc_url( admin_url( 'admin.php?page=anspress_options&active_tab=reputations' ) ) . '">' . __( 'Reputation Points' , 'anspress-question-answer' ) . '</a>' , ); return $groups ; } |
Expand full source code Collapse full source code View on GitHub: addons/reputation/reputation.php:90
Add your comment