我正在尝试向Wordpress网站添加投票功能,可用的插件不符合我的要求。
我有这个包含 wp_post对象的另一个数组(这些是投票的用户)我需要做的是将 current_user_ID 与所有进行比较数组对象中的post_author ID 。我需要这样做,以便向已经投票的用户展示不同的内容。只知道如何从数组中的对象获取 post_author值并将其与 current_user_id 进行比较会有很多帮助。我希望你们能帮助我,提前谢谢。
这是我获取数组的方式:
<?php $my_post_meta = get_post_meta($post->ID, 'supporters', false);
echo print_r($my_post_meta); ?>
这是显示的数组:
Array ([0] => Array
(
[0] => WP_Post Object
(
[ID] => 750
[post_author] => 46
)
[1] => WP_Post Object
(
[ID] => 749
[post_author] => 47
)
[2] => WP_Post Object
(
[ID] => 748
[post_author] => 1
)
))1
答案 0 :(得分:0)
试试这个:
<?php
$my_post_meta = get_post_meta($post->ID, 'supporters', false);
$current_user_ID = get_current_user_id();
foreach( $my_post_meta[0] as $post_object ) {
if( $post_object->ID == $current_user_ID ) {
// The current user has voted
}
}
?>