jodineuf
Forum Replies Created
-
Forum: Plugins
In reply to: [CPT-onomies: Using Custom Post Types as Taxonomies] Updates are comingAny news on when this will work with 4.7
Forum: Plugins
In reply to: [Recent Posts Widget Extended] [BUG?] shortcode thumb="false" not workingI set it to “0” instead of “false” and it worked
Thanks so much for your reply!
Forum: Themes and Templates
In reply to: [Quark] Font Awesome icons disappear after 1.2.6 upgradeGotcha – I’ve overridden the quark_posted_on function because we needed to take out the author meta data. I’ve now updated that function with the new icon names and it’s working as expected once again.
Thanks for the quick reply and for making this great theme! Where is the best place to see the changes in each version of Quark?
Forum: Themes and Templates
In reply to: [Quark] Switching in custom post types on home pageNever mind, I ended up solving this another way. Thanks!
After reading through to the older threads on this forum, I saw this one that might get me closer to what I’m looking to do, although I still don’t find the way to add my custom taxonomy terms (Institution) or link the title to the custom field value (URL).
<?php // retrieve the IDs of People related to this post $people_list= wp_get_object_terms( get_the_ID(), 'people', array( 'fields' => 'ids' ) ); // use "the Loop" to retrieve people info, but we only want the people with particular IDs ('post__in') $people_list= new WP_Query( array( 'post_type' => 'people', 'post__in' => $people_list, 'orderby' => 'title', 'order' => 'ASC', 'showposts' => -1 ) ); // print the people if ( $people_list->have_posts() ) : while( $people_list->have_posts() ) : $people_list->the_post(); the_post_thumbnail('thumbnail', array('class' => 'alignleft')); //here is where I want to link to the custom field value URL the_title(); //here is where I want to have the terms from Institutions endwhile; endif; ?>
Am I right that this method is better for what I’m trying to do?
Thanks!!
Forum: Plugins
In reply to: Simplepress UpdateI have the same issue, were you able to solve it?
Forum: Plugins
In reply to: [Events Calendar] [Plugin: Events Calendar] activate errorI am getting the same message, and also upon creating an event:
Warning: array_filter() [function.array-filter]: The first argument should be an array in ../wp-includes/post.php on line 2187Forum: Everything else WordPress
In reply to: [Plugin: More Fields] Error in 1.3 versionI am having the same problem.