PluginProbe
BH Custom CSS3 Preloader – Just play and play / 2.3
BH Custom CSS3 Preloader – Just play and play v2.3
trunk 2.0 2.1 2.2 2.3 2.4 2.5 2.6 2.7 2.8
bh-custom-preloader / plugin_main.php

plugin_main.php in BH Custom CSS3 Preloader – Just play and play 2.3, at plugin_main.php

34 lines 996 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 if ( ! defined( 'ABSPATH' ) ) {
4 exit; // Exit if accessed directly.
5 }
6
7 /*
8 Plugin Name: BH Custom Preloader
9 Plugin URI: https://wordpress.org/plugins/bh-custom-preloader/
10 Description: This is BH Custom Preloader WordPress plugin.It will be enable Preloader on your web site. You can change Every things from settings
11 Author: Masum Billah
12 Author URI: https://themesvila.com/
13 Version: 2.5
14 */
15
16
17 //define
18
19 define( 'BHCUSTOMPREPLUGINDIR', dirname( __FILE__ ) );
20
21 // Some configure
22 define('BHCUSTOMPRELOADERASSETS' , WP_PLUGIN_URL .'/' . plugin_basename(dirname(__FILE__)) . '/');
23
24
25
26 // Added Setting Link
27 add_filter( 'plugin_action_links_'.plugin_basename(__FILE__), 'bh_custom_preloader_settings_link' );
28 function bh_custom_preloader_settings_link($links) {
29 $newlink = sprintf("<a href='%s'>%s</a>",'admin.php?page=bh-preloader',__('Settings','custom-preloader'));
30 $links[] = $newlink;
31 return $links;
32 }
33
34 include_once(BHCUSTOMPREPLUGINDIR. '/inc/init.php');