为什么变量的值只是一次没有输入post_content?

时间:2017-03-27 08:57:43

标签: php arrays wordpress cron

我有一个autoimport.php文件

$post_args = array(
          'post_author'     => '1',
          'post_status'     => $status,
          'post_type'       => $tca,
          'post_title'      => (string)$ivd['title'],
          'post_content'    => (string)$ivd['desc'],
        );

$post_id = wp_insert_post( $post_args );

我在发布操作中的post_content中添加了两个变量,总是正确的手动发布,但是当插件使用另一个文件来导入帖子时,为了触发帖子,此变量$ myembed不会输入完全在post_content中。为什么会这样? 我在手动帖子中对两个文件进行了更改。 Importmanual.php的代码与上面几乎相同,不同之处在于使用post_args:

Cryptographic hash function

并且变量的名称是其他的,但我复制并粘贴,没有写入错误。包括这个想法是正确的,代码是否正常,$ identify变量完美地结合在一起,它可能是什么?

看到它们完整:手动发布文件和自动发布文件在文档中搜索:'hercules',您将在代码前看到一个简短的解释。 https://pastebin.com/s9Xcibd6

0 个答案:

没有答案