- add_action('parse_query', [$this, 'fixEmptyQueryString']);
- add_action('parse_query', [$this, 'filterBarQueryRedirect']);
+ add_action('wp', [$this, 'fixEmptyQueryString'], 5);
+ add_action('wp', [$this, 'filterBarQueryRedirect'], 5);

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
# roles/deploy/hooks/build-after.yml | |
- debug: | |
msg: "Before Gzip static assets: {{lookup('pipe', 'date')}}" | |
- name: Gzip static assets | |
shell: "gzip --best --keep --force {{ static_assets | map(attribute='path') | join(' ') }}" | |
when: project.gzip_assets_on_deploy | default(gzip_assets_on_deploy) | |
- debug: |
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
# Add this one along with your other nginx config files | |
# Do not change any existing site config file | |
# This example use port 8080 | |
# Maybe you have to change to another port | |
# See also: https://www.nginx.com/resources/admin-guide/serving-static-content/ | |
server { | |
listen 8080; |
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
require 'json' | |
require 'net/http' | |
def fetch(url) | |
resp = Net::HTTP.get_response(URI.parse(url)) | |
data = resp.body | |
JSON.parse(data) | |
end | |
results = fetch "https://cdn.rawgit.com/github/gemoji/master/db/emoji.json" |
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
gem 'turbolinks' | |
gem 'jquery-turbolinks', '~> 2.1.0' | |
# Pages Theme - Gems for twitter LESS -> CSS and JS support | |
gem 'therubyracer', '~> 0.12.2', platforms: :ruby | |
gem 'yui-compressor', '~> 0.12.0' | |
gem 'less-rails', '~> 2.6.0' |
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
add_action( 'phpmailer_init', 'wph_phpmailer_init' ); | |
function wph_phpmailer_init( PHPMailer $phpmailer ) { | |
$phpmailer->IsSMTP(); | |
$phpmailer->SMTPAuth = true; // enable SMTP authentication | |
$phpmailer->Port = 587; // set the SMTP server port | |
$phpmailer->Host = 'smtp.mandrillapp.com'; // SMTP server | |
$phpmailer->Username = 'MANDRILL_USERNAME'; // SMTP server username | |
$phpmailer->Password = 'MANDRILL_API_KEY'; // SMTP server password | |
} |
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
$ sudo cat your_domain.crt COMODORSADomainValidationSecureServerCA.crt COMODORSAAddTrustCA.crt AddTrustExternalCARoot.crt > ssl-bundle.crt | |
$ sudo chmod 600 /etc/nginx/ssl |
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 | |
// Skipping lots of array elements above..... | |
$settings['your_tab_slug']['user_email'] = array( | |
'name' => __( 'Your Email', $this->plugin_name ), | |
'type' => 'email' | |
); | |
$settings['your_tab_slug']['user_plan'] = array( | |
'name' => __( 'Select a plan', $this->plugin_name ), |
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
$ curl --data "author=YourName&[email protected]&url=http://www.your-domain.com&comment=Testing-Zero-Spam&comment_post_ID=123456789" http://your-domain.com/wp-comments-post.php |