| 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(); |