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 quotation mark fallback: | |
* "This is a quotaion." | |
*/ | |
q::before { | |
content: open-quote; | |
} | |
q::after { | |
content: close-quote; | |
} |
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: wpSEO Icon Fix | |
* Description: Admin icon hack for wpSEO. | |
* Version: 2018.08 | |
* Author: Simon Kraft, Caspar Hübinger, Torsten Landsiedel | |
* License: GNU General Public License v3 | |
* License URI: http://www.gnu.org/licenses/gpl-3.0.html | |
*/ |
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 echo rtrim($_SERVER['DOCUMENT_ROOT'], '/') ?> |
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 | |
function md_filter_curly_double_quotes( $translations, $text, $context, $domain ) { | |
if ( 'opening curly double quote' == $context && '“' == $text ) { | |
$translations = '„'; | |
} else if ( 'closing curly double quote' == $context && '”' == $text ) { | |
$translations = '“'; | |
} | |
return $translations; |