我的wordpress插件有问题。插件会在发布新帖子时自动创建包含该帖子内容的新文件。
这是我的密码
function example($post_ID) {
global $post;
$content = htmlentities(get_post_field(\'post_content\', $_GET[\'post\']));
file_put_contents(dirname(__FILE__) . \'\\myFile.txt\', $content);
}
add_action(\'publish_post\', \'example\');
但当我修改代码时,有些人会这样想。这会有用的
file_put_contents(dirname(__FILE__) . \'\\myFile.txt\', "Some string here");
最合适的回答,由SO网友:Mohit Bumb 整理而成
你在哪里通过邮政id?
$content = htmlentities(get_post_field(\'post_content\', $post_ID));