Tagged Questions
0
votes
1answer
185 views
Meta query: get posts with value in a multidimensional array
I have a custom post type, Album, which has a custom field called 'tracklist'. Tracklist is a multidimensional array which contains a track title and track link, like so:
$tracklist = array(
[0] ...
0
votes
3answers
94 views
Delist entries in the_loop
I am trying to add a delisting feature to my WordPress network. Posts which are delisted would not appear in post lists, but would still be visible if accessed directly.
I've written a plugin that ...