????JFIF??x?x????'
Server IP : 104.21.48.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/tempvsty/peekmysite.com/wp-content/themes/theme48421/includes/ |
Upload File : |
<?php // Loading child theme textdomain load_child_theme_textdomain( CURRENT_THEME, CHILD_DIR . '/languages' ); // WP Pointers add_action('admin_enqueue_scripts', 'myHelpPointers'); function myHelpPointers() { //First we define our pointers $pointers = array( array( 'id' => 'xyz1', // unique id for this pointer 'screen' => 'options-permalink', // this is the page hook we want our pointer to show on 'target' => '#submit', // the css selector for the pointer to be tied to, best to use ID's 'title' => theme_locals("submit_permalink"), 'content' => theme_locals("submit_permalink_desc"), 'position' => array( 'edge' => 'top', //top, bottom, left, right 'align' => 'left', //top, bottom, left, right, middle 'offset' => '0 5' ) ), array( 'id' => 'xyz2', // unique id for this pointer 'screen' => 'themes', // this is the page hook we want our pointer to show on 'target' => '#toplevel_page_options-framework', // the css selector for the pointer to be tied to, best to use ID's 'title' => theme_locals("import_sample_data"), 'content' => theme_locals("import_sample_data_desc"), 'position' => array( 'edge' => 'bottom', //top, bottom, left, right 'align' => 'top', //top, bottom, left, right, middle 'offset' => '0 -10' ) ), array( 'id' => 'xyz3', // unique id for this pointer 'screen' => 'toplevel_page_options-framework', // this is the page hook we want our pointer to show on 'target' => '#toplevel_page_options-framework', // the css selector for the pointer to be tied to, best to use ID's 'title' => theme_locals("import_sample_data"), 'content' => theme_locals("import_sample_data_desc_2"), 'position' => array( 'edge' => 'left', //top, bottom, left, right 'align' => 'top', //top, bottom, left, right, middle 'offset' => '0 18' ) ) // more as needed ); //Now we instantiate the class and pass our pointer array to the constructor $myPointers = new WP_Help_Pointer($pointers); }; add_filter( 'cherry_slider_params', 'child_slider_params' ); function child_slider_params( $params ) { $params['minHeight'] = '"100px"'; $params['height'] = '"39.6%"'; return $params; } require_once('shortcodes/wrap.php'); require_once('shortcodes/shortcodes.php'); require_once('shortcodes/mini-posts-list.php'); ?>