This document lists all the situations where WordPress sends an email, along with how to filter or disable each email.
This is accurate as of WordPress 4.9.
There are a few TODOs left. Please bear with me.
| <table style="width: 600px; margin: 0 auto; padding: 0; border-spacing: 0; border-collapse: collapse;"><tbody><tr><td style="background: #040404; margin-top: 0; padding: 0;"><img style="display: block; border: 0; line-height: 1;" src="https://typewheel.xyz/share/typewheel-email-banner.png" alt="Typewheel" width="600" /></td></tr><tr><td style="padding: 2em; background-image: linear-gradient( to bottom, #D7D7D7, #E7D3BA);"><p style="margin: 0 2em 2em;">Hello [client.contact.nickname]! Here's an overview of the things I am doing to keep your site updated, optimized, and secure.</p><p style="text-align: center; margin: 0 0 1.5em;"><img style="display: block; margin: 0 auto .5em;" src="[client.logo.url]" alt="[client.name] Logo" height="100" /><span style="text-align: center; font-size: 28px;"><strong>[report.daterange]</strong></span><br /><span style="text-align: center; font-size: 28px;"><strong><a style="color: #040404; text-decoration: none;" href="[client.site.url]">[client.site.domain]</a></strong></span>< |
| <?php | |
| /** | |
| * | |
| * Add Entry Grid Shortcode | |
| * | |
| * @since 2.0.0 | |
| * | |
| */ | |
| add_shortcode( 'entry-grid', 'basetheme_entry_grid_shortcode' ); |
This document lists all the situations where WordPress sends an email, along with how to filter or disable each email.
This is accurate as of WordPress 4.9.
There are a few TODOs left. Please bear with me.
| <?php | |
| // Create menu section under Tools in WordPress admin | |
| add_action( 'admin_menu', 'docs_admin_menu' ); | |
| // New section under Tools | |
| function docs_admin_menu() { | |
| add_management_page( 'Docs', 'Docs', 'manage_categories', 'docs', 'content_docs_admin_menu' ); | |
| } |
| Hola <nombre del cliente>: | |
| Ante todo muchas gracias por ponerte en contacto y por confiar en nuestros servicios para el desarrollo de tu web. | |
| Necesitaría que por favor respondas las siguientes preguntas para realizar un presupuesto acorde a las necesidades de tu proyecto. | |
| ==================== | |
| Sobre su negocio: | |
| - ¿A qué se dedica tu empresa/proyecto/emprendimiento? |
| <? | |
| //Don't paste in the above php tag | |
| // Enqueue scripts and styles | |
| add_action( 'wp_enqueue_scripts', 'hello_bar_scripts_styles' ); | |
| function hello_bar_scripts_styles() { | |
| wp_enqueue_script( 'hello-bar', esc_url( get_stylesheet_directory_uri() ) . '/js/hello-bar.js', array( 'jquery' ), '1.0.0' ); | |
| } |
| <script> | |
| var intercomSettings = { | |
| app_id: "{{Intercom app ID}}" | |
| }; | |
| (function() {var w = window;var ic = w.Intercom;if (typeof ic === "function") {ic('reattach_activator');ic('update', intercomSettings);} else {var d = document;var i = function() {i.c(arguments)};i.q = [];i.c = function(args) {i.q.push(args)};w.Intercom = i;var s = d.createElement('script');s.type = 'text/javascript';s.async = true; | |
| s.src = 'https://widget.intercom.io/widget/{{Intercom app ID}}'; | |
| var x = d.getElementsByTagName('script')[0];x.parentNode.insertBefore(s, x);}})(); | |
| </script> |
| <script> | |
| // app ID | |
| var intercomSettings = { | |
| app_id: "{{IC - Dynamic app ID}}" | |
| }; | |
| // Verifies and cleans all GTM variables | |
| function pushGTMVariablesToIntercom(gtmKey, gtmValue) { | |
| if("{{User - Account - Type}}" != "Guest"){ | |
| if(gtmValue != null && gtmValue != "" && gtmValue != "undefined") { |
| <?php | |
| /* | |
| // recipients array example | |
| $recipients = array( | |
| array('address'=> | |
| array( | |
| 'email' => 'email@tld.com', | |
| 'name'=>'Carlos Cabral' | |
| ) |