This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
vc_map( array( | |
"name" => esc_html__( "Slider", "seo-codervalley" ), | |
"base" => "seo_slider", | |
"category" => esc_html__( "SEO", "seo-codervalley"), | |
"params" => array( | |
array( | |
"type" => "textfield", | |
"heading" => esc_html__( "Count", "seo-codervalley" ), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function seo_slide_shortcode($atts){ | |
extract(shortcode_atts(array( | |
'count' => 3, | |
'loop' => 'true', | |
'autoplay' => 'false', | |
'autoplayTimeout' => '3000', | |
'nav' => 'true', | |
'dots' => 'true', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin name: Seo Toolkit | |
*/ | |
if( !defined('ABSPATH')){ | |
exit; | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if (!defined('ABSPATH')) die('-1'); | |
// Class started | |
class stockVCExtendAddonClass { | |
function __construct() { | |
// We safely integrate with VC with this hook | |
add_action( 'init', array( $this, 'stockIntegrateWithVC' ) ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$username = "username"; | |
$password = "password1234"; | |
$email = "[email protected]"; | |
$create_user = new WP_user(wp_create_user($username, $password, $email) ); |
NewerOlder