ไบ ๐๐๐
ไธ ๐๐๐๐
ไบ ๐๐๐
.navbar | |
.caret | |
.label | |
.table | |
.img-responsive | |
.img-rounded | |
.img-thumbnail | |
.img-circle | |
.sr-only | |
.lead |
'use strict'; | |
module.exports = function (grunt) { | |
// load all grunt tasks | |
require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks); | |
grunt.initConfig({ | |
//Add package.json reference |
<?php | |
// Change the footer text in Genesis with a back up if blank | |
add_filter('genesis_footer_creds_text', 'genesischild_footer_text'); | |
function genesischild_footer_text() { | |
if( get_theme_mod( 'footer_text_block') != "" ) { | |
echo get_theme_mod( 'footer_text_block'); | |
} | |
else{ |
<?php | |
/* SLIDER CUSTOM FIELD FOR HOMEPAGE */ | |
$images = get_field('slider_photos'); | |
$count=0; | |
$count1=0; | |
if($images) : ?> | |
<div id="slider"> | |
<div id="carousel" class="carousel slide"> | |
<!-- Indicators --> |
ไธ ๐๐๐๐
ไบ ๐๐๐
<?php | |
/** | |
* This code shows pagination for WooCommerce shortcodes when it's embeded on single pages. | |
* Include into functions.php. | |
*/ | |
if ( ! is_admin() ) { | |
// ---------------------- FRONTPAGE ------------------- | |
if ( defined('WC_VERSION') ) { |
/* Post Thumbnail Grid */ | |
.gridcontainer h2 a{color: #333; font-size: 13px;} | |
.gridcontainer .griditemleft{float: left; width: 150px; margin: 0 30px 20px 0;} | |
.gridcontainer .griditemright{float: left; width: 150px;} | |
.gridcontainer .postimage{margin: 0 0 5px 0;} | |
.gridcontainer .postimage-title {text-align: center;} |
$(document).ready(function() { | |
$('.carousel').carousel(); | |
$(".carousel-indicators li:first").addClass("active"); | |
$(".carousel-inner .item:first").addClass("active"); | |
}); |
.visible-android { | |
display:none; | |
} | |
.visible-ios { | |
display:none; | |
} | |
.on-device .visible-android, .on-device .visible-android { | |
display:inherit; | |
} | |
.device-ios .visible-android { |
<?php | |
// Add to existing function.php file | |
// Disable support for comments and trackbacks in post types | |
function df_disable_comments_post_types_support() { | |
$post_types = get_post_types(); | |
foreach ($post_types as $post_type) { | |
if(post_type_supports($post_type, 'comments')) { | |
remove_post_type_support($post_type, 'comments'); |