コード例 #1
0
ファイル: public_api.php プロジェクト: jfbelisle/magexpress
function pg_registration_form($forced_cats = false)
{
    return pc_registration_form($forced_cats);
}
コード例 #2
0
ファイル: shortcodes.php プロジェクト: jfbelisle/magexpress
function pc_registration_form_shortcode($atts, $content = null)
{
    extract(shortcode_atts(array('id' => '', 'layout' => '', 'custom_categories' => '', 'redirect' => ''), $atts));
    return str_replace(array("\r", "\n", "\t", "\v"), '', pc_registration_form($id, $layout, $custom_categories, $redirect));
}