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
load-scripts.php?c=1&load[]=jquery-core,jquery-migrate,utils&ver=5.0.3:9 JQMIGRATE: Migrate is installed, version 1.4.1 | |
load-scripts.php?c=1&load[]=hoverIntent,common,admin-bar,heartbeat,jquery-ui-widget,jquery-ui-mouse,jquery-ui-sortable,postbox,wp-backbone,media-models,wp-p&load[]=lupload,wp-mediaelement,media-views&ver=5.0.3:43 Uncaught TypeError: this.activateMode is not a function | |
at load-scripts.php?c=1&load[]=hoverIntent,common,admin-bar,heartbeat,jquery-ui-widget,jquery-ui-mouse,jquery-ui-sortable,postbox,wp-backbone,media-models,wp-p&load[]=lupload,wp-mediaelement,media-views&ver=5.0.3:43 | |
at s (blocks.build.js?ver=1550101267:1) | |
at Function.ss (blocks.build.js?ver=1550101267:1) | |
at n._createModes (load-scripts.php?c=1&load[]=hoverIntent,common,admin-bar,heartbeat,jquery-ui-widget,jquery-ui-mouse,jquery-ui-sortable,postbox,wp-backbone,media-models,wp-p&load[]=lupload,wp-mediaelement,media-views&ver=5.0.3:43) | |
at n.initialize (load-scripts.php?c=1&load[]=hoverIntent,common,admin-bar,he |
https://www.artsy.net/artwork/frida-kahlo-autorretrato-con-chango-y-loro
https://www.fridakahlo.org/self-portrait-with-thorn-necklace-and-hummingbird.jsp
http://m.paintingandframe.com/p/l/frida_kahlo/self_portrait_with_monkey_1940.jpg
https://artsandculture.google.com/asset/self-portrait-with-small-monkey/MAElamBvSYjiGw
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
// Alert on Staging Site | |
// http://stackoverflow.com/questions/6522023/php-if-domain | |
$host = $_SERVER['HTTP_HOST']; | |
if ($host != 'XXXXXXXXXX.com') { | |
function staging_admin_error_notice() | |
{ | |
$class = "error"; | |
$message = "You are on the staging site."; | |
echo"<div class=\"$class\"> <h1>$message</h1></div>"; | |
} |
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
{ | |
"editor.rulers": [ | |
80 | |
], | |
"editor.tabSize": 2, | |
"editor.multiCursorModifier": "alt", | |
"editor.renderWhitespace": "all", | |
"editor.insertSpaces": true, | |
"editor.trimAutoWhitespace": true, | |
"files.trimFinalNewlines": true, |
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
<?php | |
add_action( 'wp_enqueue_scripts', 'kale_child_enqueue_styles' ); | |
function kale_child_enqueue_styles() { | |
$parent_style = 'kale-style'; | |
$deps = array('bootstrap', 'bootstrap-select', 'font-awesome', 'owl-carousel'); | |
wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' , $deps); | |
wp_enqueue_style( 'kale-style-child', get_stylesheet_directory_uri() . '/style.css', array( $parent_style ), wp_get_theme()->get('Version') ); | |
} |
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
<h3 style="text-align: left;"><strong>I am hosting Mini Chef Mondays along with 4 fabulous bloggers, find out more about the <a href="https://www.courtneyssweets.com/mini-chef-mondays-team/" target="_blank">Mini Chef Mondays Team</a>!</strong> | |
<strong>Join our <a href="https://www.facebook.com/groups/1690162761238968/" target="_blank" rel="nofollow">facebook group</a> to find even more recipes and share recipes too!</strong></h3> | |
<div> | |
<div><strong><span>Get featured and follow us too!</span></strong></div> | |
</div> | |
<div> | |
<ul> | |
<li><span><a href="https://www.pinterest.com/courtneyssweets/mini-chef-mondays/" target="_blank" rel="nofollow">Pinterest</a>: Check out our Mini Chef Mondays board</span></li> | |
<li><span><a href="https://www.instagram.com/minichefmondays/" target="_blank" rel="nofollow">Instagram</a>: Use our hashtag #MiniChefMondays so we can repost your mini chef</span></li> | |
<li><span><a href="https://twitter.com/minichefmondays" target="_blank" rel="nofollow">Twitter |
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
<span style="color:#cf1f28">THE TITLE ALL CAPS</span><br /> | |
<span style="color:#cf1f28">Sunday • Month DD • 9:00 & 10:45am</span><br /> | |
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus vel finibus felis. |
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
$source = "https://gist.githubusercontent.com/wormeyman/60e716e197e724ce83a4/raw/a8c108c4915b0f214fad5e184f0180118da3fe06/packages.config" | |
$Filename = [System.IO.Path]::GetFileName($source) | |
$dest = "$env:TEMP\$Filename" | |
$wc = New-Object System.Net.WebClient | |
$wc.DownloadFile($source, $dest) | |
Start-Process cinst.exe -FilePath $dest -ArgumentList -y |