Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- *
- * @ This file is created by http://DeZender.Net
- * @ deZender (PHP5 Decoder for ionCube Encoder)
- *
- * @ Version : 3.0.8.0
- * @ Author : DeZender
- * @ Release on : 25.09.2017
- * @ Official site : http://DeZender.Net
- *
- */
- function limit_words($string, $word_limit)
- {
- $words = explode( ' ', $string );
- return implode( ' ', array_slice( $words, 0, $word_limit ) );
- }
- function remove_cssjs_ver($src)
- {
- if (strpos( $src, '?ver=' )) {
- $src = remove_query_arg( 'ver', $src );
- }
- return $src;
- }
- function wpmod_scripts()
- {
- wp_register_script( 'jquery-12', get_template_directory_uri( ) . '/js/jquery-1.12.2.min.js', array( 'jquery' ), '1.12.2', false );
- wp_enqueue_script( 'jquery-12' );
- wp_register_script( 'bootstrap-js', get_template_directory_uri( ) . '/js/bootstrap.min.js', array( 'jquery' ), '3.3.6', true );
- wp_enqueue_script( 'bootstrap-js' );
- }
- function wpmod_styles()
- {
- wp_register_style( 'bootstrap-css', get_template_directory_uri( ) . '/css/bootstrap.min.css' );
- ..................................................................
- ........................................
- ....................
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement