In Post-Meta-Daten sind einige Werte als mehrdimensionales Array gespeichert. Ich möchte einige ihrer Daten aktualisieren.
Hier ist der Post-Meta-Wert, der mit <?php the_meta(); ?>
angezeigt wird.
voter: a:1:{s:5:"voter";a:5:
{s:7:"post_id";s:6:"219585";s:8:"voter_id";s:4:"1540";s:8:"voter_ip";s:13:"182.4
8.238.86";s:9:"author_id";s:4:"1540";s:4:"vote";s:1:"1";}},
a:1:{s:5:"voter";a:5:
{s:7:"post_id";s:6:"219585";s:8:"voter_id";s:3:"832";s:8:"voter_ip";s:13:"182.48
.238.86";s:9:"author_id";s:4:"1540";s:4:"vote";s:2:"-1";}},
a:1:{s:5:"voter";a:5:
{s:7:"post_id";s:6:"219585";s:8:"voter_id";s:2:"10";s:8:"voter_ip";s:13:"182.48.
238.86";s:9:"author_id";s:4:"1540";s:4:"vote";s:1:"1";}}
Jetzt möchte ich die vote
oder den voter_ip
aktualisieren, wobei user_id
832 oder 1540 ist. Ich habe versucht, update_post_meta()
zu verwenden, aber es wird alles aktualisiert.
So aktualisieren Sie die Post-Meta-Werte von Einzelwerten, die in mehrdimensionalen Arrays gespeichert sind
Update:
array mit the-meta()
voter: a:1:{s:5:"voter";a:5:{s:7:"post_id";s:6:"219585";s:8:"voter_id";s:3:"832";s:8:"voter_ip";s:13:"182.48.238.86";s:9:"author_id";s:4:"1540";s:4:"vote";s:1:"1";}},
a:1:{s:5:"voter";a:5:{s:7:"post_id";s:6:"219585";s:8:"voter_id";s:4:"1540";s:8:"voter_ip";s:13:"182.48.238.86";s:9:"author_id";s:4:"1540";s:4:"vote";s:2:"-1";}}, , ,
a:1:{s:5:"voter";a:5:{s:7:"post_id";s:6:"219585";s:8:"voter_id";s:3:"832";s:8:"voter_ip";s:13:"182.48.238.86";s:9:"author_id";s:4:"1540";s:4:"vote";s:1:"1";}},
a:1:{s:5:"voter";a:5:{s:7:"post_id";s:6:"219585";s:8:"voter_id";s:4:"1540";s:8:"voter_ip";s:13:"182.48.238.86";s:9:"author_id";s:4:"1540";s:4:"vote";s:2:"-1";}}
array mit print_r()
Array( [0] => Array ( [voter] => Array ( [post_id] => 219585 [voter_id] =>
832 [voter_ip] => 182.48.238.86 [author_id] => 1540 [vote] => 1 ) ) [1] =>
Array ( [voter] => Array ( [post_id] => 219585 [voter_id] => 1540 [voter_ip]
=> 182.48.238.86 [author_id] => 1540 [vote] => -1 ) ) [2] => [3] => [4] =>
Array ( [voter] => Array ( [post_id] => 219585 [voter_id] => 832 [voter_ip]
=> 182.48.238.86 [author_id] => 1540 [vote] => 1 ) ) [5] => Array ( [voter]
=> Array ( [post_id] => 219585 [voter_id] => 1540 [voter_ip] =>
182.48.238.86 [author_id] => 1540 [vote] => -1 ) ))
Möglicherweise müssen Sie die Daten unserialisieren, um das Array abzurufen und die Schleife zu durchlaufen.
$userid = 832; // or 1540
$votes = get_post_meta($postid,'voter');
$votes = maybe_unserialize($votes);
if (is_array($votes)) {
// votes is the array, key is numeric index, vote is subarray
foreach ($votes as $key => $vote) {
// subarray values are in another array with key 'voter'
if ($vote['voter']['voter_id'] == $userid) {
$votes[$key]['voter']['vote'] = $newvote;
$votes[$key]['voter']['voter_ip'] = $newvoterip;
}
}
update_post_meta($postid,'voter',$voter);
}