wenpai.org/wp-content/plugins/o2/inc/text-helpers.php
2024-06-21 23:57:39 +08:00

11 lines
411 B
PHP

<?php
// Psuedo-Markdown: blockquote by starting a line with "> ", posts or comments
function o2_blockquote_text( $content ) {
if ( stristr( $content, "\n<p>&gt; " ) ) {
$content = preg_replace( '!\n<p>&gt; (.*?)</p>!sui', '<blockquote><p>\1</p></blockquote>', $content );
}
return $content;
}
add_filter( 'the_content', 'o2_blockquote_text', 20 );
add_filter( 'comment_text', 'o2_blockquote_text', 30 );