For a Replacement visit this project on our GitHub organisation account.
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
| MarkUp (parsed) | |
| *bold* | |
| _italic_ | |
| -strikethrough- | |
| Special Characters: | |
| OE Œ œ | |
| AE Æ æ | |
| Arrows: |
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
| print apply_filters( 'the_excerpt', get_the_excerpt() XOR get_the_content('') ); |
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 | |
| class oxoTextDomainLoader | |
| { | |
| /** | |
| * Load plugin translation | |
| * | |
| * @link http://wordpress.stackexchange.com/questions/33312/how-to-translate-plural-forms-for-themes-plugins-with-poedit/33314#33314 Translation Tutorial by the author | |
| * @since 3.0 | |
| * @return void |
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
| /** | |
| * Window onLoad Init triggers | |
| * Use to load all functions you need on window.onload w/o the need for jQuery | |
| * | |
| * @author Dean Edwards/Matthias Miller/John Resig | |
| * @link http://stackoverflow.com/a/3144510/376483 | |
| */ | |
| function init() | |
| { | |
| // quit if this function has already been called |
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 | |
| /** | |
| * Mobile Support | |
| * | |
| * @since 0.1 | |
| * @return (string) $output For mobile devices like iPhone | |
| */ | |
| function oxo_add_chrome_meta() | |
| { | |
| $output = ''; |
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 | |
| /** | |
| * A: Sets the {$_data} of the base 'theme' / 'plugin' / 'mu-plugin' | |
| * B: Fills the {$_container} variable with the type of container | |
| * | |
| * Performance: average loading time on a local (not vanilla) install, | |
| * inside a theme directory, for 10.000 runs: 0.0042 sec. | |
| * The perfomance on a vanilla install should be even better. | |
| * | |
| * In case someone used `register_theme_directory()` to add additional |
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 | |
| defined( 'ABSPATH' ) OR exit; | |
| add_action( 'init', array( 'oxoImageSizesExtd', 'init' ), 0 ); | |
| class oxoImageSizesExtd extends oxoImageSizes | |
| { | |
| /** | |
| * The Class Object | |
| * @var |
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
| // THIS GIST HAS MOVED TO A REPO: https://github.com/franz-josef-kaiser/Dynamic-Image-Resize |
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: Alternatives Themes Dir | |
| * Plugin URI: http://unserkaiser.com | |
| * Description: Changes the themes directory to <code>/apps</code> | |
| * Version: 0.1 | |
| * Author: Franz Josef Kaiser | |
| * Author URI: http://unserkaiser.com | |
| */ | |
| // Prevent loading this file directly - Busted! |