All posts in Uncategorised

Free Wi-Fi in Malta

How to Fix Max Execution Time Problems in WordPress

JQuery Animated Form Switching

RegEx Replacement in WordPress Content

Just call this function:

function reg_replace_content( $szPattern, $szReplace, $bPrint = false )
{
	global $post;
	$szPostContent = $post->post_content;
    $szPostContent = preg_replace( $szPattern, $szReplace , $szPostContent );
	apply_filters( 'the_content', $szPostContent );
	if ( $bPrint == false ) return $szPostContent; else echo $szPostContent;
}

like so:

// Search '~<p[^>]*>\s?</p>~' ( remove empties <p> ) and print the content.
       <?php if ( function_exists( 'reg_replace_content' ) ) reg_replace_content( '~<p[^>]*>\s?</p>~', '', true ); ?>

WordPress Email Login Plugins