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
function insert_jquery(){ | |
wp_enqueue_script('jquery', false, array(), false, false); | |
} | |
add_filter('wp_enqueue_scripts','insert_jquery',1); |
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
{ | |
"purpose": "maskable", | |
"sizes": "1024x1024", | |
"src": "/images/icons/maskable/maskable_icon.png", | |
"type": "image/png" | |
}, | |
{ | |
"purpose": "maskable", | |
"sizes": "512x512", | |
"src": "/images/icons/maskable/maskable_icon_x512.png", |
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
{ | |
"purpose": "any", | |
"sizes": "1024x1024", | |
"src": "/images/icon_512x512@2x.png", | |
"type": "image/png" | |
}, | |
{ | |
"purpose": "any", | |
"sizes": "512x512", | |
"src": "/images/icon_512x512.png", |
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
<link rel="apple-touch-icon" sizes="40x40" href="/images/icons/ios/Icon-Light-40x40.png"> | |
<link rel="apple-touch-icon" sizes="58x58" href="/images/icons/ios/Icon-Light-58x58.png"> | |
<link rel="apple-touch-icon" sizes="60x60" href="/images/icons/ios/Icon-Light-60x60.png"> | |
<link rel="apple-touch-icon" sizes="76x76" href="/images/icons/ios/Icon-Light-76x76.png"> | |
<link rel="apple-touch-icon" sizes="80x80" href="/images/icons/ios/Icon-Light-80x80.png"> | |
<link rel="apple-touch-icon" sizes="87x87" href="/images/icons/ios/Icon-Light-87x87.png"> | |
<link rel="apple-touch-icon" sizes="114x114" href="/images/icons/ios/Icon-Light-114x114.png"> | |
<link rel="apple-touch-icon" sizes="120x120" href="/images/icons/ios/Icon-Light-120x120.png"> | |
<link rel="apple-touch-icon" sizes="128x128" href="/images/icons/ios/Icon-Light-128x128.png"> | |
<link rel="apple-touch-icon" sizes="136x136" href="/images/icons/ios/Icon-Light-136x136.png"> |
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
javascript: window.location = 'https://webcache.googleusercontent.com/search?q=cache:' + window.location.protocol + '//' + window.location.hostname + window.location.pathname; |
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
.screen-reader-text:not(:focus):not(:active) { | |
position: absolute; | |
overflow: hidden; | |
clip: rect(0 0 0 0); | |
clip-path: inset(50%); | |
width: 1px; | |
height: 1px; | |
white-space:nowrap; | |
} |
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 ( function_exists( 'add_theme_support' ) ) { | |
add_theme_support( 'post-thumbnails' ); | |
set_post_thumbnail_size( 150, 79, true ); | |
add_image_size( 'single-post-thumbnail', 1200, 630 ); | |
} |
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
function remove_yoast_json($data){ | |
$data = array(); | |
return $data; | |
} | |
add_filter('wpseo_json_ld_output', 'remove_yoast_json', 10, 1); |
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
<time datetime="<?php the_time('c'); ?>"><?php the_time('m/j/Y'); ?> <?php the_time('g:ia T'); ?></time> |
NewerOlder