Initial Commit - Plugin v1.0.0

This commit is contained in:
2018-05-22 23:40:58 +02:00
parent 0ef7665850
commit 09b279d447
119 changed files with 12872 additions and 0 deletions

11
includes/admin/menus.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
function fbr_admin_menus(){
add_menu_page(
'Facebook Ratings Options',
'FB Ratings',
'edit_theme_options',
'fbr_plugin_opts',
'fbr_plugin_opts_page'
);
}