I am using headwaythemes to create my website. I like to custimize the ORDER-BY.
This is the code I found in the file.
'order-by' => array(
'type' => 'select',
'name' => 'order-by',
'label' => 'Order By',
'tooltip' => '',
'options' => array(
'date' => 'Date',
'title' => 'Title',
'rand' => 'Random',
'comment_count' => 'Comment Count',
'ID' => 'ID',
'meta_value_num' => 'Custom' // my code
)
),
I added this line and it shows up in the select box. But nothing happens cause like http://codex.wordpress.org/Class_Reference/WP_Query there is missing the 'meta_key=keyname' this must also be present.
How do I make it present?
I tried an array( oderby => meta_value_num, meta_key => images_likes ) => 'Custom' // my code
but this does not work, too.
Can some tell me how to add the meta_key?