Michael Fields
Forum Replies Created
-
Forum: Plugins
In reply to: [Taxonomy Widget] [Plugin: Taxonomy Widget] Change order of TaxonomiesI’ll look into it and see what I can do. This may be possible. Not sure off the top of my head though.
Forum: Plugins
In reply to: [Taxonomy Widget] Pretty URLs not working any moreThis issue was worked out via email. Version 0.5.1 of this plugin fixes this. Coming in a day or two.
Forum: Plugins
In reply to: [BNS Inline Asides] [Plugin: BNS Inline Asides] Hardcoded plugin pathTotally fixed it for me! Thanks for the fast update 🙂 Closing this thread as resolved.
Forum: Plugins
In reply to: [BNS Inline Asides] [Plugin: BNS Inline Asides] Hardcoded plugin pathAwesome! Will do tomorrow for sure!
Forum: Plugins
In reply to: [Taxonomy Images] [Plugin: Taxonomy Images BETA] Return only the image url?Sweet! Feel free to chime in here if you have specific requests: http://wordpress.mfields.org/2011/taxonomy-images-plugin-moving-forward/
There are also some questions.
Hi, Sorry for dredging up an old post, but I really liked this idea and am working on new releases of both Taxonomy Images and Taxonomy List Shortcode. The shortcode functionality has been removed from Taxonomy Images and Taxonomy List Shortcode will have appropriate parameters for images in it’s brand new “Glossary” template. I may at a “Gallery” template as well which will create a grid of images. Thanks for the suggestion!
Sweet! Is it used to create “Cast” in the sidebar?
Forum: Plugins
In reply to: [Taxonomy Images] [Plugin: Taxonomy Images BETA] Return only the image url?FYI This plugin is going over a complete rewrite at the moment. Getting really close to a new release 0.7. A lot of time is being put into new functions to better access that data stored by the plugin so hopefully things like this will be easier in the future. Development can be followed on Github https://github.com/mfields/Taxonomy-Images
Forum: Hacks
In reply to: simple codex/php coding question: get_childrenTry like this:
<?php $images = get_children( array( 'post_parent' => get_the_ID(), 'post_type' => 'attachment', 'post_mime_type' => 'image', 'numberposts' => -1 ) ); foreach ( (array) $images as $image ) { print wp_get_attachment_url( $image->ID ); } ?>Forum: Hacks
In reply to: simple codex/php coding question: get_childrenForum: Hacks
In reply to: simple codex/php coding question: get_childrenYou can try something like this:
<?php $images = get_children( array( 'post_parent' => get_the_ID(), 'post_type' => 'attachment', 'post_mime_type' => 'image', 'numberposts' => -1 ) ); foreach ( (array) $images as $image ) { print wp_get_attachment_image( $image->ID, 'thumbnail' ); } ?>Forum: Hacks
In reply to: simple codex/php coding question: get_childrenHi Riddler,
Please see the code in my taxonomy list shortcode plugin. It supports paging of taxonomy terms.
Best wishes,
-MikeForum: Plugins
In reply to: [Taxonomy List Shortcode] [Plugin: Taxonomy List Shortcode] Date last postedSorry, but that feature is not supported in this plugin. Was not even aware that it existed to be honest with you.
Just wanted to give you an update: I’ve been able to fix this for search results as well in the “Browser Uploader”. Unfortunately, I’ve broken the flash uploader though 🙁 This should be easy to fix, just need to find the time to get everything wrapped up and released. Next version is definitely going to be a strong step forward for this plugin.