我正在使用电子邮件发布到 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 );