Lines:
1 to 29 of 29
<?php // (C) Copyright Bobbing Wide 2014-2015 /* * Allow for the autopia plugin * * * - The autopia plugin is a (vapourware) "feature plugin" * - It contains code intended for the WordPress core * - If the current version of WordPress already provides the required function, or autopia is available then we'll use its logic otherwise we have to define it ourselves * * For the moment, in this simple version, we just perform function_exists() testing * implemented with belt and braces; around each function * */ if ( !function_exists( "wptexturize_blocks" ) ) { /* function wptexturize_blocks() – Apply wptexturize logic in blocks */ } /* endif exists wptexturize_blocks */ if ( !function_exists( "wptexturize_after_shortcodes" ) ) { /* function wptexturize_after_shortcodes() – Replaces common plain text characters into formatted entities */ } if ( !function_exists( "wpautop_nobr" ) ) { /* function wpautop_nobr() – Replace double line-breaks without adding `<br />`. */ }View on GitHub View on Trac