0

我正在使用电子邮件发布到 Wordpress 博客,我想过滤 [title 短代码之前的所有内容。我一直在尝试一些事情,但没有运气。这就是我所拥有的:

<?php
function filter_handler( $data , $postarr ) {
// do something with the post data
$post_content = $postarr['post_content'];

strstr($post_content, '[title');

}

add_filter( 'wp_insert_post_data', 'filter_handler', '99', 2 );
4

1 回答 1

0

弄清楚了

function changePost($data, $postarr) {

  $data['post_content'] = strstr( $postarr['post_content'], '[title' );
return $data;
}

add_filter('wp_insert_post_data','changePost','99',2);
于 2013-10-15T11:15:21.827 回答