Title: jfache's Replies | WordPress.org

---

# jfache

  [  ](https://wordpress.org/support/users/jfache/)

 *   [Profile](https://wordpress.org/support/users/jfache/)
 *   [Topics Started](https://wordpress.org/support/users/jfache/topics/)
 *   [Replies Created](https://wordpress.org/support/users/jfache/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/jfache/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/jfache/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/jfache/engagements/)
 *   [Favorites](https://wordpress.org/support/users/jfache/favorites/)

 Search replies:

## Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[FeedWordPress] [Plugin: FeedWordPress] remove or limit "syndication_item_hash" entries?](https://wordpress.org/support/topic/plugin-feedwordpress-safely-remove-or-limit-syndication_item_hash-entries-in-wp_postmeta/)
 *  [jfache](https://wordpress.org/support/users/jfache/)
 * (@jfache)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/plugin-feedwordpress-safely-remove-or-limit-syndication_item_hash-entries-in-wp_postmeta/#post-2502430)
 * It’s actually quite easy to limit the number of stored hashes, but the question
   is: what is the point of storing all the past hashes?
 * I’d love to know!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Taxonomy Manager] [Plugin: Ultimate Taxonomy Manager] Causes 404 with custom post types](https://wordpress.org/support/topic/plugin-ultimate-taxonomy-manager-causes-404-with-custom-post-types/)
 *  [jfache](https://wordpress.org/support/users/jfache/)
 * (@jfache)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/plugin-ultimate-taxonomy-manager-causes-404-with-custom-post-types/#post-2602515)
 * I lost 1 hour because of that.
    No one should be allowed to call $wp_rewrite-
   >flush_rules() outside of activation/deactivation hook.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Taxonomy Images] [Feature Request] Get specific term image, not queried term image](https://wordpress.org/support/topic/feature-request-get-specific-term-image-not-queried-term-image/)
 *  Thread Starter [jfache](https://wordpress.org/support/users/jfache/)
 * (@jfache)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/feature-request-get-specific-term-image-not-queried-term-image/#post-2149162)
 * 1. Thanks for this clear and simple explanation!
 * 2. Right now I’m using `get_categories`, but you’re right, I could use `get_terms`
   and take advantage of your wrapper: its main advantage over my simple function
   is its caching process I wasn’t aware of.
 * So for my use case my function is actually useless. Might be simple and useful
   for single term queries though. A new `taxonomy-images-get-term` filter would
   make sense.
 * Finally, I would have to agree with your filter approach: I like your arguments,
   and as you said, it wasn’t a lightly made decision – you proved it!
 * Thanks again.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Taxonomy Images] [Feature Request] Get specific term image, not queried term image](https://wordpress.org/support/topic/feature-request-get-specific-term-image-not-queried-term-image/)
 *  Thread Starter [jfache](https://wordpress.org/support/users/jfache/)
 * (@jfache)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/feature-request-get-specific-term-image-not-queried-term-image/#post-2149126)
 * Hi Michael,
 * 1. You’re right, I didn’t notice that. It won’t be a problem for me. Do you know
   in which cases the `term_id` and the `term_taxonomy_id` fields are different 
   though?
 * 2. My use case was pretty straightforward: I was listing my top level blog categories
   and I needed to print their associated images. I couldn’t figure how to do it
   with the default filters: did I miss something?
 * The reasons you gave for the “apply_filters approach” make sense, but I don’t
   know if *performance wise* it wouldn’t be better to stick to the classic “if 
   function exists” approach. Once again I have no idea.
 * Thanks for your response anyway!
    Jeremy
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Taxonomy Images] [Plugin: Taxonomy Images BETA] Return only the image url?](https://wordpress.org/support/topic/plugin-taxonomy-images-beta-return-only-the-image-url/)
 *  [jfache](https://wordpress.org/support/users/jfache/)
 * (@jfache)
 * [15 years, 4 months ago](https://wordpress.org/support/topic/plugin-taxonomy-images-beta-return-only-the-image-url/#post-1562279)
 * Hi there,
 * I just added this function to my functions.php to return the image attributes(
   url, width and height) of any size of any image associated with a term thanks
   to this plugin.
 *     ```
       function get_tax_thumb_url($term_tax_id, $size = 'category-thumb') {
   
         global $taxonomy_images_plugin;
         if( isset( $taxonomy_images_plugin->settings ) ) {
       	  if( array_key_exists( $term_tax_id, (array) $taxonomy_images_plugin->settings ) ) {
       		  $image_id = $taxonomy_images_plugin->settings[$term_tax_id];
       		  return wp_get_attachment_image_src( $image_id, $size );
       	  }
         }
       }
       ```
   
 * It should maybe be included in the plugin’s core.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Hellocoton] Plugin Hellocoton](https://wordpress.org/support/topic/plugin-hellocoton/)
 *  [jfache](https://wordpress.org/support/users/jfache/)
 * (@jfache)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/plugin-hellocoton/#post-1958358)
 * Même chose, le plugin est codé avec les pieds, le code est chargé mais le bouton‘
   J’aime’ est masqué (display:none).
 * Si je trouve je reviens ici.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[CF Internal Link Shortcode] [Plugin: CF Internal Link Shortcode] Link images](https://wordpress.org/support/topic/plugin-cf-internal-link-shortcode-link-images/)
 *  [jfache](https://wordpress.org/support/users/jfache/)
 * (@jfache)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/plugin-cf-internal-link-shortcode-link-images/#post-1857873)
 * As a matter of fact the plugin is **still** necessary. The internal linking support
   of WP 3.1 is just a way of browsing through your articles, it links posts via
   their _possibly changing_ permalinks. This plugin links posts via their static
   IDs.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[CF Internal Link Shortcode] [Plugin: CF Internal Link Shortcode] Link images](https://wordpress.org/support/topic/plugin-cf-internal-link-shortcode-link-images/)
 *  [jfache](https://wordpress.org/support/users/jfache/)
 * (@jfache)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/plugin-cf-internal-link-shortcode-link-images/#post-1857871)
 * According to the plugin’s code, it can handle the “[link id=’123′]<img src=”pic.
   jpg”/>[/link]” formatting, but the content is HTML escaped by the plugin’s code
   as well, so the <img> tag doesn’t render.
 * I wonder why.

Viewing 8 replies - 1 through 8 (of 8 total)