[ ] Do you have a preferred grid system? || I'd like to use this grid system.
[ ] What fonts do we have available to us? || I'd like to use this font (and include a URL).
Checklist before Handoff to Development
{ | |
"repositories":[ | |
{ | |
"type":"composer", | |
"url":"http://wpackagist.org" | |
}, | |
{ | |
"type": "package", | |
"package": { | |
"name": "WebDevStudios/Hash-Link-Scroll-Offset", |
How to use | |
[button link='http://linktosomething.com' color='orange']My Button Text![/button] |
# ----------------------------------------------------------------- | |
# .gitignore for WordPress @salcode | |
# ver 20180808 | |
# | |
# From the root of your project run | |
# curl -O https://gist.githubusercontent.com/salcode/b515f520d3f8207ecd04/raw/.gitignore | |
# to download this file | |
# | |
# By default all files are ignored. You'll need to whitelist | |
# any mu-plugins, plugins, or themes you want to include in the repo. |
<?php | |
add_action( 'the_content', 'test_add_query_arg_output' ); | |
function test_add_query_arg_output( $content ) { | |
return add_query_arg( | |
array( | |
'var_key' => 'key_value', | |
'another_var' => 'My Value' | |
), | |
home_url() |
# SSH into server | |
# change to root account using `su` (if you're not already logged in as root) | |
# Test for vulnerability | |
env x='() { :;}; echo vulnerable' bash -c "echo this is a test" | |
# If you see this output, you're not vulnerable and logout now | |
# bash: warning: x: ignoring function definition attempt | |
# bash: error importing function definition for `x' | |
# this is a test |
// BEGIN DEV JS CODE for error_log | |
jQuery(document).ready( function($) { | |
$log = $('<div><h3>Log</h3></div>').css({ | |
'position': 'absolute', | |
'top': 0, | |
'left': 0, | |
'width': 300, | |
'border': '1px solid red', | |
'background': 'white', |
add_filter( 'plugins_url', 'fe_google_sitemap_plugin_https_fix', 10, 3 ); | |
function fe_google_sitemap_plugin_https_fix( $url, $path, $plugin ) { | |
if ( 'sitemap.xsl' !== $url ) { | |
return $url; | |
} | |
if ( 'https://' === substr( $url, 0, 8 ) ) { | |
// the url begins with https, which we do NOT want | |
// change url to start with http instead of https | |
$url = 'http' . substr( $url, 5 ); |
# SSH into the server as root | |
# confirm Linux version CentOS 6.5 | |
cat /etc/*-release | |
# clear metadata (ensure we get the latest release) | |
yum clean metadata | |
# update openssl | |
yum update openssl |
<?php | |
// short code to display by meta_key job_title | |
add_shortcode( 'burbs_sort_test', 'burbs_sort_test' ); | |
function burbs_sort_test() { | |
global $post; | |
echo '<pre>'; | |
$atts = array( | |
'post_type' => 'post', | |
'order' => 'ASC', |