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
# Copyright (C) 2014 WP Rocket | |
# This file is distributed under the same license as the WP Rocket package. | |
msgid "" | |
msgstr "" | |
"Project-Id-Version: WP Rocket 2.3.6\n" | |
"Report-Msgid-Bugs-To: http://wp-rocket.me/\n" | |
"POT-Creation-Date: 2014-10-06 14:18:51+00:00\n" | |
"MIME-Version: 1.0\n" | |
"Content-Type: text/plain; charset=UTF-8\n" | |
"Content-Transfer-Encoding: 8bit\n" |
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 | |
// Add a post signature for multiple authors. | |
// All signature divs will have a class of .signature for common styling | |
// then .signature-cat as the default and .signature-tracey for the guest | |
// as class modifiers (different background image, or background position | |
// if using sprites etc.) | |
// If it's not a single entry of any post type, return. | |
if ( is_single() ) { | |
return; |
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 | |
// Solution for https://github.com/Tarendai/davina | |
/** | |
* Remove filter or action method added from an unassigned object. | |
* | |
* Solves the immediate case. Not bothered to generalise it. | |
* | |
* @global array $wp_filter Storage for all of the filters and actions. |
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="phpmd.xml" | |
xmlns="http://pmd.sf.net/ruleset/1.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://pmd.sf.net/ruleset/1.0.0 http://pmd.sf.net/ruleset_xml_schema.xsd" | |
xsi:noNamespaceSchemaLocation="http://pmd.sf.net/ruleset_xml_schema.xsd"> | |
<description>PHPMD Ruleset for a WordPress Theme</description> | |
<rule ref="rulesets/cleancode.xml/BooleanArgumentFlag" /> | |
<rule ref="rulesets/cleancode.xml/ElseExpression" /> | |
<rule ref="rulesets/cleancode.xml/StaticAccess" /> |
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
/** | |
* Gamajo Accessible Menu. | |
* | |
* Improves menu accessibility in two ways: | |
* * Adds a delay to submenus disappearing when moving the mouse away. | |
* * Makes submenus appear when tabbing through menu items with the keyboard. | |
* | |
* Kudos to Rian Rietveld for the code on which this plugin is based. | |
* | |
* After enqueueing this file (or concatenating it with your theme JS file), |
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
.genesis-nav-menu { | |
// ... other styles | |
.menu-item:hover, | |
.menu-item-hover { | |
position: static; | |
> .sub-menu { // Note the > | |
left: auto; | |
opacity: 1; |
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
// Navigation (.genesis-nav-menu) | |
$navigation-font-size: 16px !default; | |
$navigation-line-height: 1 !default; | |
$navigation-link-color: #000 !default; | |
$navigation-link-color-hover: #e5554e !default; | |
$navigation-link-padding: 30px 24px; | |
// Navigation submenus | |
$navigation-submenu-width: 200px; | |
$navigation-submenu-link-font-size: 14px !default; |
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 | |
/* File level DocBlock here - includes/class-remove-h1-format.php */ | |
/* Class level DocBlock here */ | |
class Remove_H1_Format { | |
/* | |
* Modify TinyMCE editor to remove H1. | |
*/ | |
public function remove( $init ) { | |
// GJ: No need for the filter - if they don't want it running, deactivate the plugin. |
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
{ | |
"icons": [ | |
{ | |
"name": "Glass", | |
"id": "glass", | |
"unicode": "f000", | |
"created": 1, | |
"categories": [ | |
"Web Application Icons" | |
] |