chrizzlee
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Themes and Templates
In reply to: need help with wp_query, cutom post type, custom taxonomyherp derp
this is the right way:
$args = array( 'post_type' => 'publication', 'tax_query' => array( array( 'taxonomy' => 'category', 'field' => 'slug', 'terms' => 'acciss-study', ), array( 'taxonomy' => 'type', 'field' => 'slug', 'terms' => 'press-releases-statements', ), ), ); $the_query = new WP_Query( $args );Forum: Themes and Templates
In reply to: [Adventurous] Mobile different then laptopdepends on your theme, there probably is a seperate css file for mobile.
or try searching the css file you edited for the green color and replace itForum: Themes and Templates
In reply to: Well i need ur help about how to put photos on postsare you using a theme or did you make a custom template?
you probably just have to set the post thumbnail (featured image)
Forum: Plugins
In reply to: [WP Publication Archive] How to make a searchLet me know if you found a way to make it searchable
I figured, but i wasn’t sure.
thanks for confirming!
Viewing 5 replies - 1 through 5 (of 5 total)