Skip to content

Instantly share code, notes, and snippets.

View bkaminski's full-sized avatar
🍺
IPA Time

Ben Kaminski bkaminski

🍺
IPA Time
View GitHub Profile
@bkaminski
bkaminski / sample-customizer-section04.php
Last active September 29, 2017 02:58
Bootstrap Coursel WP Theme Customizer Add Paragraph Text to Image
$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',
@bkaminski
bkaminski / sample-customizer-section05.php
Last active September 29, 2017 02:58
Bootstrap Carousel WP Theme Customizer add Image URL
$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',
@bkaminski
bkaminski / sample-customizer-section06.php
Last active September 29, 2017 02:55
Bootstrap Carousel WP Theme Customizer Function
add_action( 'customize_register', 'theme_slug_home_img_slide_1' );
@bkaminski
bkaminski / sample-customizer-section07.php
Last active September 29, 2017 02:59
Bootstrap Carousel WP Theme Customizer Function Full Script
<?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,
@bkaminski
bkaminski / bscarousel-wp-themecustomizer.php
Last active August 7, 2017 01:29
Bootstrap Carousel WP Theme Customizer HTML Implementation
<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 -->
Verifying that "benkaminski.id" is my Blockstack ID. https://onename.com/benkaminski
@bkaminski
bkaminski / resp_preview1.html
Last active September 2, 2017 12:12
BK.com Responsive Preview Tutorial 1
<iframe src="http://www.yourwebsite.com"></iframe>
@bkaminski
bkaminski / resp_preview2.html
Last active September 2, 2017 12:20
BK.com Responsive Preview Tutorial 2
<!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">
@bkaminski
bkaminski / resp_preview3.css
Created September 2, 2017 12:14
BK.com responsive them Preview 3
/* BenKaminski Preview Styles */
html {
height: 100%;
width: 100%;
position: relative;
}
body {
background: #fff;
margin: 0;
height: 100%;
@bkaminski
bkaminski / resp_preview4.css
Created September 2, 2017 12:16
BK.com Responsive Preview 5
@media all and (-webkit-min-device-pixel-ratio: 1.5) {
...
}