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
$wp_customize->add_setting( 'theme_slug_slide_text_1', array( | |
'default' => 'No Descriptive Text Has Been Entered', | |
'sanitize_callback' => 'sanitize_slide_one_descriptive_text' | |
)); | |
function sanitize_slide_one_descriptive_text( $input ) { | |
return wp_kses_post( force_balance_tags( $input ) ); | |
} | |
$wp_customize->add_control( 'theme_slug_slide_text_1', array( | |
'label' => __( 'Descriptive Text Here:', 'theme_slug' ), | |
'section' => 'home_slide_img_one', |
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
$wp_customize->add_setting( 'theme_slug_slide_one_link', array( | |
'default' => 'No Link URL Has Been Entered', | |
'sanitize_callback' => 'sanitize_link_one_url', | |
)); | |
function sanitize_link_one_url( $input ) { | |
return wp_kses_post( force_balance_tags( $input ) ); | |
} | |
$wp_customize->add_control( 'theme_slug_slide_one_link', array( | |
'label' => __( 'Slide 1 URL Here:', 'theme_slug' ), | |
'section' => 'home_slide_img_one', |
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
add_action( 'customize_register', 'theme_slug_home_img_slide_1' ); | |
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 | |
// ADD IMAGE, TEXT, and URL (Heading, Subtext, Link) TO FIRST IMAGE IN SEQUENCE -- WP THEME CUSTOMIZER | |
function theme_slug_home_img_slide_1( $wp_customize ) { | |
$wp_customize->add_section( | |
'home_slide_img_one', | |
array( | |
'title' => 'Home Image Slide 1', | |
'description' => 'This section updates all information pertaining to the first image in the slideshow on the home page', | |
'priority' => 1, |
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
<div id="myCarousel" class="carousel slide" data-ride="carousel"> | |
<!-- Indicators --> | |
<ol class="carousel-indicators"> | |
<li data-target="#myCarousel" data-slide-to="0" class="active"></li> | |
<li data-target="#myCarousel" data-slide-to="1"></li> | |
<li data-target="#myCarousel" data-slide-to="2"></li> | |
</ol> | |
<div class="carousel-inner" role="listbox"> | |
<div class="item active"> | |
<!-- now dynamically generated --> |
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
Verifying that "benkaminski.id" is my Blockstack ID. https://onename.com/benkaminski |
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
<iframe src="http://www.yourwebsite.com"></iframe> |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link href="css/bk-preview-styles.css" rel="stylesheet"> | |
</head> | |
<body> | |
<div id="preview-bar"> |
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
/* BenKaminski Preview Styles */ | |
html { | |
height: 100%; | |
width: 100%; | |
position: relative; | |
} | |
body { | |
background: #fff; | |
margin: 0; | |
height: 100%; |
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
@media all and (-webkit-min-device-pixel-ratio: 1.5) { | |
... | |
} |