%PDF- %PDF-
Direktori : /var/www/html/ceaa/wp-content/plugins/paid-memberships-pro/shortcodes/ |
Current File : /var/www/html/ceaa/wp-content/plugins/paid-memberships-pro/shortcodes/checkout.php |
<?php //checkout shortcode separated out so we can have multiple checkout pages function pmpro_checkout_shortcode($atts, $content=null, $code="") { ob_start(); if(file_exists(get_stylesheet_directory() . "/paid-memberships-pro/pages/checkout.php")) include(get_stylesheet_directory() . "/paid-memberships-pro/pages/checkout.php"); else include(plugin_dir_path(dirname(__FILE__)) . "/pages/checkout.php"); $temp_content = ob_get_contents(); ob_end_clean(); return apply_filters("pmpro_pages_shortcode_checkout", $temp_content); } add_shortcode("pmpro_checkout", "pmpro_checkout_shortcode");