A Pen by David Stubbs on CodePen.
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
var gulp = require('gulp'), | |
sass = require('gulp-sass'), | |
sourcemaps = require('gulp-sourcemaps'); | |
var input = './scss/**/*.scss', | |
output = './css'; | |
gulp.task('sass', function () { | |
return gulp.src(input) | |
.pipe(sourcemaps.init()) |
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
var gulp = require('gulp'); | |
var less = require('gulp-less'); | |
var watch = require('gulp-watch'); | |
var minify = require('gulp-minify-css'); | |
var rename = require('gulp-rename'); | |
var header = require('gulp-header'); | |
var pkg = require('./package.json'); | |
var sourcemaps = require('gulp-sourcemaps'); | |
/* Prepare banner text */ |
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
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
*.pyc |
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
// Creating the widget | |
class wpb_widget extends WP_Widget { | |
function __construct() { | |
parent::__construct( | |
// Base ID of your widget | |
'wpb_widget', | |
// Widget name will appear in UI | |
__('WPBeginner Widget', 'wpb_widget_domain'), |
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
if (strlen(get_the_excerpt()) > 340) { | |
echo substr(get_the_excerpt(), 0, 340) . '...'; } else { | |
echo get_the_excerpt(); | |
} |
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
html { | |
background: url(images/bg.jpg) no-repeat center center fixed; | |
-webkit-background-size: cover; | |
-moz-background-size: cover; | |
-o-background-size: cover; | |
background-size: cover; | |
} |
NewerOlder