kjpro27
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Use Categories In Custom Post QuerySorry, forgot to mention you can use the term ID instead of slug as well and provide the query with an array of the category term ids which is the default action.
Forum: Fixing WordPress
In reply to: Use Categories In Custom Post QueryIt sounds like you need to specify the category term. Try this:
<?php query_posts(array( 'post_type' => 'events', 'order' => 'ASC', 'tax_query' => array( array( 'taxonomy' => 'category', 'field' => 'slug', 'terms' => array( '$term' ), ), ) ); ?>//Replace $term with the category slug or array of slugs you would like displayed.
Forum: Fixing WordPress
In reply to: Open Sans magically appeared all of a suddenThis has been a part of core since 3.8, so it’s been around for a little while now.
Forum: Fixing WordPress
In reply to: How to add field upload image for user profileI think you should look into Advanced Custom fields. It’s great plugin with many uses. Specifically, Advanced Custom Fields Image field. You can add fields to the user page using their user interface and call the fields in your template. Otherwise you would have to add it to the user meta.
Forum: Themes and Templates
In reply to: [Ignite] Remove DATE from all postsYou would have to remove the date function in your single.php file of your theme.