Tagged Questions
0
votes
1answer
216 views
wp list pages using meta box value
I am using the following meta boxes on services page but how would I get the page(s) which have value of this meta box?
For example, list all pages where service_type = 'web'
I am using the ...
0
votes
1answer
151 views
How to apply the 'current_page_item' class to an archive page in `wp_list_pages()`?
So I have the following custom wp-query working on my site:
function custom_front_page($wp_query){
if($wp_query->get('page_id')==get_option('page_on_front')){
...