欢迎使用WPSE。当你问问题的时候recommended 在你的问题中包括你的研究和你已经尝试过的东西。
一种选择是使用add_shortcode()
. 使用自定义快捷码,您可以在站点上的任何位置使用任何Kajabi表单,只要该快捷码将表单ID作为参数。例如
// add for example to child theme functions.php
add_shortcode( \'my_kajabi_form\', \'kajabi_form_shortcode\' );
function kajabi_form_shortcode( $atts ) {
// assuming form ids are always integers
if ( empty( $atts[\'id\'] ) || ! is_numeric( $atts[\'id\'] ) ) {
return;
}
return sprintf(
\'<div class="kajabi-wrap">
<script src="https://mykajabiwebsite.com/forms/%d/embed.js"></script>
</div>\',
absint($atts[\'id\'])
);
}
然后在您的帖子内容中使用
[my_kajabi_form id="123456"]
.