post_content; $content = apply_filters('the_content', $content); $content = str_replace(']]>', ']]>', $content); return $content; } /* * Get template file */ function affcoups_get_template_file( $template, $type ) { $template_file = AFFILIATE_COUPONS_DIR . 'templates/' . $template . '.php'; $template_file = apply_filters( 'affcoups_template_file', $template_file, $template, $type ); if ( file_exists( $template_file ) ) return $template_file; return ( 'widget' === $type ) ? AFFILIATE_COUPONS_DIR . 'templates/widget.php' : AFFILIATE_COUPONS_DIR . 'templates/standard.php'; }