CF7DB 扩展简码内的简码(Wordpress Contact form 7 到数据库插件)
Shortcode inside shortcode of CF7DB-extention (Wordpress Contact form 7 to database plugin)
有没有办法在 CF7DB 简码 (Wordpress plugin) 中使用简码?
像这样:
[cfdb-table form=”Registration 3GC” search=”[user_email]”]
其中 [user_email]
是登录用户的电子邮件地址。 [user_email]
短代码正在由其他插件创建。
我希望登录用户在网站的前端部分显示他们填写的 contact 7 表单。也许还有其他方法可以做到这一点?
提前致谢
试试这个:
$email = do_shortcode("[user_email]");
echo do_shortcode('[cfdb-table form="Registration 3GC" search="'. $email .'"]');
有没有办法在 CF7DB 简码 (Wordpress plugin) 中使用简码?
像这样:
[cfdb-table form=”Registration 3GC” search=”[user_email]”]
其中 [user_email]
是登录用户的电子邮件地址。 [user_email]
短代码正在由其他插件创建。
我希望登录用户在网站的前端部分显示他们填写的 contact 7 表单。也许还有其他方法可以做到这一点?
提前致谢
试试这个:
$email = do_shortcode("[user_email]");
echo do_shortcode('[cfdb-table form="Registration 3GC" search="'. $email .'"]');