Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
forbidals
/
wp-content
/
plugins
/
smart-loan-calculator
:
functions-wp.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php function SLC_scripts() { global $post; //========= if( has_shortcode( $post->post_content, 'smart-loan-calc') ) { //------------ PLAYER----- wp_enqueue_script('script_p1',plugins_url('/slc.js?v=1.3', __FILE__) , array('jquery'),'2.1',0 ); //footer // wp_enqueue_style( 'style_p0', plugins_url('/skin/custom-skin.css', __FILE__) ); //-------------------- } } function SLC_initiate(){ ob_start(); include 'Pages/home.php'; $output = ob_get_clean(); return $output; } ?>