This file contains hidden or 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
<style> | |
span.review-verified { | |
display: none; | |
} | |
div#widget_div { | |
border-radius: 0px; | |
} | |
</style> |
This file contains hidden or 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
<iframe width="720" height="405" src="https://www.loom.com/embed/3110e657b2c6410a96bc7700d5b5e18f" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe> |
This file contains hidden or 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
DELETE relations.*, taxes.*, terms.* | |
FROM wpa12_term_relationships AS relations | |
INNER JOIN wpa12_term_taxonomy AS taxes | |
ON relations.term_taxonomy_id=taxes.term_taxonomy_id | |
INNER JOIN wpa12_terms AS terms | |
ON taxes.term_id=terms.term_id | |
WHERE object_id IN (SELECT ID FROM wpa12_posts WHERE post_type='product'); | |
DELETE FROM wpa12_postmeta WHERE post_id IN (SELECT ID FROM wpa12_posts WHERE post_type = 'product'); | |
DELETE FROM wpa12_posts WHERE post_type = 'product'; | |
DELETE a,c FROM wpa12_terms AS a |
This file contains hidden or 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> | |
<head> | |
<title>GameWeek Winners</title> | |
<style> | |
</style> | |
</head> | |
<body> | |
<div class="header"> | |
<h1>GameWeek Winners</h1> | |
</div> |
This file contains hidden or 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 | |
// Shortcode to output GMB hours | |
// Use [hours] shortcode | |
// By Jarod Thornton https://jarodthornton.com | |
// And Adopt the Web https://adopttheweb.com | |
function atw_gmb_hours() { | |
// Get Google Places ID here: https://developers.google.com/maps/documentation/places/web-service/place-id#save-id | |
// Input the Google Places ID here | |
$gmb_place_id = '_id_'; | |
// Input the API key here |