PluginProbe
Related Posts By PickPlugins / trunk
Related Posts By PickPlugins vtrunk
trunk 1.0 1.1 1.2 2.0.0 2.0.1 2.0.10 2.0.11 2.0.14 2.0.16 2.0.17 2.0.18 2.0.19 2.0.2 2.0.20 2.0.21 2.0.22 2.0.23 2.0.24 2.0.25 2.0.26 2.0.27 2.0.28 2.0.29 2.0.30 All 60 releases
related-post / includes / class-settings.php

class-settings.php in Related Posts By PickPlugins trunk, at includes/class-settings.php

22 lines 553 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined('ABSPATH')) exit; // if direct access
3
4 class class_related_post_settings{
5
6 public function __construct(){
7
8 add_action( 'admin_menu', array( $this, '_menu_init' ), 12 );
9 }
10
11 public function settings(){
12 include('menu/settings.php');
13
14 }
15
16 public function _menu_init(){
17
18 add_menu_page(__('Related Post','related-post'), __('Related Post','related-post'), 'manage_options', 'related_post_settings', array( $this, 'settings' ), 'dashicons-align-right');
19 }
20 }
21
22 new class_related_post_settings();