For example you have your own shortcode "hello_name":
function hello($atts, $content) {
extract(shortcode_atts( array(
'salutation' => !empty($salutation) ? $salutation : 'Mr.',
var gulp = require('gulp'); | |
var minifycss = require('gulp-minify-css'); | |
var autoprefixer = require('gulp-autoprefixer'); | |
var notify = require('gulp-notify'); | |
var stripDebug = require('gulp-strip-debug'); | |
var uglify = require('gulp-uglify'); | |
gulp.task('css', function() { | |
return gulp.src('assets/css/sentinel.css') |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
var data = "do shash'owania"; | |
var crypto = require('crypto'); | |
crypto.createHash('md5').update(data).digest("hex"); |
1. Download the "Install OS X Yosemite.app" form App Store and keep it in Applications Folder | |
2. Open the Terminal and just hit the command | |
sudo /Applications/Install\ OS\ X\ Yosemite.app/Contents/Resources/createinstallmedia --volume /Volumes/Untitled --applicationpath /Applications/Install\ OS\ X\ Yosemite.app --nointeraction | |
Then It will show the Following message | |
"Erasing Disk: 0%... 10%... 20%... 30%...100%... | |
Copying installer files to disk... |
<html> | |
<head> | |
<title>Google Maps Multiple Markers</title> | |
<script src="http://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script> | |
</head> | |
<body> | |
<div id="map" style="height: 400px; width: 500px;"> | |
</div> | |
<script type="text/javascript"> |
find . -name '*.DS_Store' -type f -delete |
from Theme Development (Wordpress Codex)
wp-config.php
file to see deprecated function calls and other WordPress-related errors: define('WP_DEBUG', true);
. See Deprecated Functions Hook for more information.