get_post_meta无效,但db

时间:2015-07-22 21:03:17

标签: php wordpress woocommerce


我正在以编程方式添加产品(woocommerce)功能,但无法获得正确的结果,它返回空数组()

<?php 
$downloadable_files = get_post_meta(417,'_downloadable_files');
print_r($downloadable_files);
?>

`wp_postmeta` table view

enter image description here

full row view

enter image description here

添加downloadable_files的代码是

<?php 
$files = array();
$file_name = wc_clean("MP15");
$file_url = "http://localhost/wp/directory/locations/wp-content/uploads/2015/07/YouTubeLogo.png";
$file_hash = md5($file_url);
$files[$file_hash] = array('name' => $file_name,'file' => $file_url);
update_post_meta(417, '_downloadable_files', $files );
?>

我错过了,请帮助我 另外,我检查,当我在管理员中添加相同的产品,它是完美的工作 但通过编程方式,我只面临这个问题。 谢谢

0 个答案:

没有答案