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 | |
/** | |
* Disables Minify for inline CSS. | |
* https://github.com/wp-media/wp-rocket/blob/v2.11.3/inc/front/minify.php#L72 | |
*/ | |
add_filter( 'rocket_minify_html_options', function ( $html_options ) { | |
$html_options = array(); | |
return $html_options; |
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 | |
/** | |
* Customise parameters for critical CSS generator. | |
*/ | |
add_filter( 'rocket_cpcss_job_request', function ( $item ) { | |
return array( | |
'url' => $item['url'], | |
'mobile' => 0, // 1 = Emulate a mobile device | |
'viewport_width' => 1300 // px maximum width of the viewport | |
'viewport_height' => 900 // px maximum height of the viewport |
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 | |
/** | |
* PLEASE SEE COMMENT BELOW: | |
* https://gist.github.com/glueckpress/0fcd12a8ada43e37e400facd987016a1#gistcomment-3009533 | |
*/ | |
defined( 'ABSPATH' ) or die(); | |
/** | |
* Plugin Name: WP Rocket | Remove Cache Options Meta Boxx | |
* Description: Removes the Cache Options meta box from Edit screens. | |
* Author: Caspar Hübinger |
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
# Sample of .git/info/exclude | |
# Documentation: https://git-scm.com/docs/gitignore | |
# Exclude .gitignore file. | |
# If an initial .gitignore file has been added to the repo, | |
# you might have to delete it first and sync the change. | |
# Then create a new one which will be excluded according to this rule. | |
.gitignore | |
# Exclude all of WordPress, but keep these directories synced: |
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 | |
/** | |
* Quick and dirty addition to: | |
* https://github.com/wp-media/wp-rocket-helpers/tree/master/wp-rocket-debug-helper | |
*/ | |
add_action( 'wp_footer', function () { | |
if ( ! function_exists( 'get_rocket_option' ) ) { | |
return; | |
} |
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 | |
/** | |
* Wrapper function: Applies WP Rocket’s LazyLoad to wp_get_attachment_image() | |
* | |
* @link https://developer.wordpress.org/reference/functions/wp_get_attachment_image/ | |
* @link https://github.com/wp-media/wp-rocket/blob/v2.10.9/inc/front/lazyload.php#L24-L47 | |
* | |
* @param int $attachment_id (Required) Image attachment ID. | |
* @param string|array $size (Optional) Image size. Accepts any | |
* valid image size, or an array of width |
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 | |
defined( 'ABSPATH' ) && function_exists( 'add_action' ) or exit; | |
/** | |
* Plugin Name: Shoo | |
* Plugin URI: https://gist.github.com/glueckpress/3a15c8a070f9451c18e10f6d6e76c56d | |
* Description: Sends an HTTP status of 403 when a login has failed. Idea previously <a href="https://plus.google.com/u/0/110569673423509816572/posts/T1gnqbiYjZZ">published by Sergej Müller</a>. | |
* Version: 0.0.2 | |
* Author: Caspar Hübinger | |
* Author URI: https://profiles.wordpress.org/glueckpress | |
* License: GNU General Public License v3 |
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 | |
defined( 'ABSPATH' ) or die( 'No direct access here.' ); | |
/** | |
* Plugin Name: Simple Map | Defer | |
* Description: Makes sure Google Maps API script from <a href="https://wordpress.org/plugins/simple-map/">Simple Map</a> gets loaded deferred. | |
* Author: Caspar Hübinger | |
* Author URI: https://profiles.wordpress.org/glueckpress | |
* Plugin URI: https://gist.github.com/glueckpress/56c88900aad391b95b5d44f4e752a1a4 | |
* License: GNU General Public License v3 or later | |
* License URI: http://www.gnu.org/licenses/gpl-3.0.html |
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 | |
/** | |
* More about WP Rocket’s preload options in this document: | |
* @link http://docs.wp-rocket.me/article/8-how-the-cache-is-preloaded | |
*/ | |
/** | |
* Check if a visitor is WP Rocket’s preload user agent (bot or sitemap). | |
* This will trigger only on a document that has not been cached yet. | |
* |
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 | |
/** | |
* Plugin Name: AMA 42 | |
* Description: Ask me anything on post 42. | |
* Version: 2017-02-08 | |
* Author: Caspar Hübinger | |
* Author URI: https://profiles.wordpress.org/glueckpress | |
* License: GNU General Public License v3 or later | |
* License URI: http://www.gnu.org/licenses/gpl-3.0.html | |
*/ |