0

所以我有以下

SELECT wp_posts.ID, wp_posts.post_author,wp_posts.post_date,wp_posts.post_content,wp_posts.post_title,wp_posts.post_excerpt,wp_postmeta.meta_value
FROM wp_posts
INNER JOIN wp_postmeta
ON wp_posts.id=wp_postmeta.post_id
WHERE wp_postmeta.meta_key='cm_video' and post_status='publish'
ORDER BY wp_posts.id DESC;

这带回了我需要的东西(几乎)。meta_value 的形式为

a:2:{s:4:"code";s:27:"http://youtu.be/xpiL05fCE1E";s:4:"type";s:7:"youtube";}

带回来最简单的方法是http://youtu.be/xpiL05fCE1E什么?这里可以存在各种其他值,例如嵌入和 iframe 代码。

我应该使用 WordPress 内部的东西吗?

我想出了这个似乎可以解决问题的方法。想法?

SELECT 
wp_posts.ID, wp_posts.post_author,wp_posts.post_date,wp_posts.post_content,wp_posts.post_title,wp_posts.post_excerpt,SUBSTRING_INDEX(SUBSTRING_INDEX(wp_postmeta.meta_value, '";', 2), ':"', -1)
FROM wp_posts
INNER JOIN wp_postmeta
ON wp_posts.id=wp_postmeta.post_id
WHERE wp_postmeta.meta_key='cm_video' and post_status='publish'

谢谢

4

2 回答 2

0

我们将使用 wp_query 以正确的格式获得相同的结果:

     $query = new WP_Query( array ( 
                                    'post_type' => 'product', 
                                    'orderby' => 'meta_value_num', 
                                    'meta_key' => 'cm_video' ) );

     print_r($query);

现在,如果 $query 对象中包含您的值的代码元素。打印它:

     echo $query->code;

希望它对您有用,如果您需要任何进一步的帮助,请告诉我。

于 2014-11-07T10:17:40.823 回答
0

使用 unserialize() 方法

$a='a:2:{s:4:"code";s:27:"http://youtu.be/xpiL05fCE1E";s:4:"type";s:7:"youtube";}';
$a = unserialize($a);
print_r($a);

//output
Array ( [code] => http://youtu.be/xpiL05fCE1E [type] => youtube )

echo $a['code'];

这里有两种类型的变量

a = array and 2 is the dimension of the array
s = string and 4 is the length of the string
于 2014-11-07T09:55:16.097 回答