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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>Event Promo</title> | |
| <style> | |
| :root { |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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/.nvmrc b/.nvmrc | |
| index b009dfb9d9..c2f6421352 100644 | |
| --- a/.nvmrc | |
| +++ b/.nvmrc | |
| @@ -1 +1 @@ | |
| -lts/* | |
| +10.22.1 | |
| diff --git a/.travis.yml b/.travis.yml | |
| index bd1980aab9..d99d9498cf 100644 | |
| --- a/.travis.yml |
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
| { | |
| "plugins": [ | |
| "./client-mu-plugins/", | |
| "./mu-plugins/", | |
| "./plugins/" | |
| ], | |
| "themes": [ | |
| "./themes/" | |
| ], | |
| "config": { |
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
| /* Set the background color of body to dark grey */ | |
| /* Default Layout */ | |
| body { | |
| background-color: #333; | |
| color: #fff; | |
| } | |
| .kittens { | |
| background-color: #fff; | |
| padding: 10px; |
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 | |
| WP_CLI::add_command( 'podcast', 'JS_Podcast_Import' ); | |
| /** | |
| * Wired Core CLI Functions | |
| */ | |
| class JS_Podcast_Import extends WP_CLI_Command { |
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
| #!/bin/sh | |
| defaults read com.apple.finder CreateDesktop > /dev/null 2>&1 | |
| enabled=$? | |
| if [ "$1" = "off" ]; then | |
| if [ $enabled -eq 1 ]; then | |
| defaults write com.apple.finder CreateDesktop false | |
| osascript -e 'tell application "Finder" to quit' | |
| open -a Finder |
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
| {"lastUpload":"2018-03-16T23:17:55.299Z","extensionVersion":"v2.9.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
| <?php | |
| /** | |
| * Test Callback on Publish | |
| * | |
| * @package News-Nerds | |
| */ | |
| add_action( 'publish_post', 'callback_function_to_run_on_publish', 999 ); | |
| /** |
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: Comment Moderator | |
| * Plugin URI: https://99robots.com/products/ | |
| * Description: Add a new user role, Comment Moderator, that allows a new user to only manage comments. | |
| * Version: 1.3.2 | |
| * Author: 99 Robots | |
| * Author URI: https://99robots.com | |
| * License: GPL2 | |
| * Text Domain: wpsite-comment-moderator |
NewerOlder