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
version: "3" | |
services: | |
wordpress: | |
container_name: "docker_wordpress_1" | |
depends_on: | |
- db | |
- memcached | |
- selenium | |
environment: |
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
hi |
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
default: | |
suites: | |
default: | |
contexts: | |
- PaulGibbs\WordpressBehatExtension\Context\WordpressContext | |
- Behat\MinkExtension\Context\MinkContext | |
- PaulGibbs\WordpressBehatExtension\Context\ContentContext | |
- PaulGibbs\WordpressBehatExtension\Context\DashboardContext | |
- PaulGibbs\WordpressBehatExtension\Context\SiteContext | |
- PaulGibbs\WordpressBehatExtension\Context\UserContext |
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: Disable Gutenberg | |
*/ | |
add_filter('use_block_editor_for_post', '__return_false'); |
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
+----------------+--------------------------------+-------------------------+-------------+--------+---------------------+ | |
| language | english_name | native_name | status | update | updated | | |
+----------------+--------------------------------+-------------------------+-------------+--------+---------------------+ | |
| de_CH | German (Switzerland) | Deutsch (Schweiz) | uninstalled | none | 2018-07-08 16:40:04 | | |
| de_CH_informal | German (Switzerland, Informal) | Deutsch (Schweiz, Du) | uninstalled | none | 2018-07-08 16:42:22 | | |
| de_DE | German | Deutsch | uninstalled | none | 2018-07-10 10:18:08 | | |
| de_DE_formal | German (Formal) | Deutsch (Sie) | uninstalled | none | 2018-07-10 10:21:23 | | |
| es_AR | Spanish (Argentina) | Español de Argentina | uninstalled | none | 2018-06-16 04:48:17 | | |
| es_CL | Spanish (Chile) |
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
diff --git a/src/humans.txt b/src/humans.txt | |
index 5af7e71a4..6306ece57 100644 | |
--- a/src/humans.txt | |
+++ b/src/humans.txt | |
@@ -99,6 +99,10 @@ Title: Core Developer | |
Twitter: slaFFik | |
Favorite Food: Cakes | |
+Name: Venutius | |
+Title: Community Support |
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
default: | |
suites: | |
default: | |
contexts: | |
- PaulGibbs\WordpressBehatExtension\Context\SiteContext | |
- PaulGibbs\WordpressBehatExtension\Context\WordpressContext | |
- Behat\MinkExtension\Context\MinkContext | |
- PaulGibbs\WordpressBehatExtension\Context\ContentContext | |
- PaulGibbs\WordpressBehatExtension\Context\DashboardContext | |
- PaulGibbs\WordpressBehatExtension\Context\UserContext |
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
* Use a Post Type for email templates. | |
* The intention is to use the standard wp-admin interface to allow people to change the contents of the email. | |
* Mustache-like token syntax. | |
* Use the WP Customiser to visually customise those emails. | |
* Use a Taxonomy to store the distinct types of emails we send (e.g. new_user, new_site, new_activity_mention, etc). | |
* Add a HTML email template for the post type. | |
Direct calls to `wp_mail()` replaced with custom function `bp_send_mail()` that, basically, wraps `wp_mail`: | |
* I surveyed all the mail replacement plugins I could find (like Mandrill's), and they all re-declare `wp_mail` to implement support for their custom service. Therefore, if `wp_mail()` is redeclared, *or* something has been filtered to get WP to send HTML emails, I'm assuming there's some dark voodoo at work -- and for reasons of trying to be compatible as possible, BP will treat emails the same way it does today (we'll pass it straight through to whatever `wp_mail()` is). | |
* `bp_send_mail` does three |
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
<?xml version="1.0"?> | |
<ruleset name="WordPress Coding Standards"> | |
<description>Apply WordPress Coding Standards to all Core files</description> | |
<rule ref="WordPress-Core"> | |
<exclude name="WordPress.PHP.YodaConditions.NotYoda" /> | |
<exclude name="WordPress.WP.I18n.MissingTranslatorsComment" /> | |
<exclude name="WordPress.Files.FileName.InvalidClassFileName" /> | |
<exclude name="PEAR.NamingConventions.ValidClassName.Invalid" /> | |
<exclude name="WordPress.WP.PreparedSQL.NotPrepared" /> |
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
gg |