<?php // ignore this line.

add_filter( 'wpmem_securify', 'my_securify_filter' );

function my_securify_filter( $content ) {

	/*
	 * This filter can filter the content that is returned.
	 * 
	 * If you have additional criteria you want to set to 
	 * block content, such as a custom post type, or a user 
	 * level, this is the filter you want to use.
 	 */

	 return $content;
}