This document lists all the situations where WordPress sends an email, along with how to filter or disable each email.
This documentation has moved here: https://github.com/johnbillion/wp_mail
| <?php | |
| /** | |
| * Style pagination to look like Genesis. | |
| * | |
| * @version 1.0.0 | |
| * | |
| * @author Mike Hemberger @JiveDig | |
| * | |
| * @link https://gist.github.com/JiveDig/b9810ba4c322d7757993159ed9ccb61f |
| <?php | |
| namespace App\Providers; | |
| use Illuminate\Http\Request; | |
| use Illuminate\Routing\Route; | |
| use Illuminate\Support\ServiceProvider; | |
| use App\Http\Middleware\CaptureRequestExtension; | |
| class AppServiceProvider extends ServiceProvider |
This document lists all the situations where WordPress sends an email, along with how to filter or disable each email.
This documentation has moved here: https://github.com/johnbillion/wp_mail
| # ----------------------------------------------------------------- | |
| # .gitignore for WordPress @salcode | |
| # ver 20180808 | |
| # | |
| # From the root of your project run | |
| # curl -O https://gist.githubusercontent.com/salcode/b515f520d3f8207ecd04/raw/.gitignore | |
| # to download this file | |
| # | |
| # By default all files are ignored. You'll need to whitelist | |
| # any mu-plugins, plugins, or themes you want to include in the repo. |
| <?php // be sure to remove this line! | |
| // Workaround for iThemes Exchange breadcrumbs issue. | |
| // Strip breadcrumbs on iThemes Exchange ghost pages unless | |
| // Genesis settings have enabled breadcrumbs on pages. | |
| add_action( 'genesis_before_content', 'studiopress_it_exchange_breadcrumbs' ); | |
| function studiopress_it_exchange_breadcrumbs() { | |
| global $post; |
| upstream phpfpm { | |
| server unix:/var/run/php5-fpm.sock; | |
| } | |
| upstream hhvm { | |
| server unix:/var/run/hhvm/hhvm.sock; | |
| } | |
| # SSL | |
| ssl_protocols TLSv1 TLSv1.1 TLSv1.2; |
| // Register and Hook Top Navigation Menu | |
| add_action('genesis_before_header', 'sample_before_header_menu', 10); | |
| function sample_before_header_menu() { | |
| register_nav_menu( 'top', 'Top Navigation Menu' ); | |
| genesis_nav_menu( array( | |
| 'theme_location' => 'top', | |
| 'menu_class' => 'menu genesis-nav-menu menu-top', | |
| ) ); |
| <?php | |
| /* | |
| Plugin Name: Genesis Simple Sidebars | |
| Plugin URI: http://www.studiopress.com/plugins/simple-sidebars | |
| Description: Genesis Simple Sidebars allows you to easily create and use new sidebar widget areas. | |
| Author: Nathan Rice | |
| Author URI: http://www.nathanrice.net/ | |
| Text Domain: ss | |
| Domain Path: /languages/ |