我使用wordpress作为我们公司网站的CMS。 我们有大约5-10个页面,我们希望在其中插入相同的号召性用语。
如何创建一个允许我将帖子中的内容嵌入页面的短代码?
由于 史蒂芬。
答案 0 :(得分:1)
我没有测试过这个,但你可能会想要这些内容:
function create_call_to_action_shortcode( $atts ) {
$call_to_action_content = '';
$query = new WP_Query( array( 'p' => $post_id, 'no_found_rows' => true ) );
if( $query->have_posts() ) {
$query->the_post();
remove_filter( 'the_content', 'sharing_display', 19);
$call_to_action_content = apply_filters( 'the_content', get_the_content() );
add_filter( 'the_content', 'sharing_display', 19);
wp_reset_postdata();
}
return $call_to_action_content;
}
add_shortcode( 'call_to_action', 'create_call_to_action_shortcode' );`
在您的网页(或其他帖子中),您只需在页面/帖子内容中插入[call_to_action]
即可。
您可以在shorcodes here找到更多信息。 :)
修改强>
要从帖子内容中删除共享按钮,您需要致电remove_filter( 'the_content', 'sharing_display', 19);
。我已经更新了上面的代码。