You appear to be a bot. Output may be restricted
Description
Implement "the_content" filter for the "opted_in" custom post type
Note: We need to respond each time this filter is invoked since it can get called during get_the_excerpt()! Unnecessarily in my opinion but that's WordPress for you.
Usage
$string = oiksp_the_content( $content );
Parameters
- $content
- ( string ) required –
Returns
string filtered content
Source
File name: oik-squeeze/oik-squeeze.php
Lines:
1 to 9 of 9
function oiksp_the_content( $content ) { global $post; if ( $post && $post->post_type == "opted_in" ) { oik_require( "shortcodes/oik-squeeze.php", "oik-squeeze" ); $content = oiksp_lazy_squeeze( $content ); } return( $content ); }