Title: gendem's Replies | WordPress.org

---

# gendem

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 26 total)

1 [2](https://wordpress.org/support/users/gendem/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/gendem/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook Comments for WordPress] [Plugin: Facebook Comments for WordPress] Just Released, Version 3.0](https://wordpress.org/support/topic/plugin-facebook-comments-for-wordpress-just-released-version-30/)
 *  [gendem](https://wordpress.org/support/users/gendem/)
 * (@gendem)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/plugin-facebook-comments-for-wordpress-just-released-version-30/page/5/#post-1959762)
 * I’m having some funkiness with the Like results…some pages show huge number of
   Likes, as if the likes for the entire site are being summed…and other pages work
   as expected. Anyone else seeing this?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ambrosite Next/Previous Post Link Plus] [Plugin: Ambrosite Next/Previous Post Link Plus] Seeking beta testers](https://wordpress.org/support/topic/plugin-ambrosite-nextprevious-post-link-plus-seeking-beta-testers/)
 *  [gendem](https://wordpress.org/support/users/gendem/)
 * (@gendem)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/plugin-ambrosite-nextprevious-post-link-plus-seeking-beta-testers/page/2/#post-1605173)
 * Based on an email I got from Michael, using the ‘in_same_cat’ => true will do
   the trick, and it does…but only as long as only one label is applied to a post.
   As soon as there is more than one, in_same_cat tries to match **any** of the 
   labels applied to the current post, which is not what I’m after.
 * So I’m still trying to sort this out…basically I need the opposite functionality
   of “ex_cats” meaning I’d like to specify the IDs to include, not exclude.
 * …Mike
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ambrosite Next/Previous Post Link Plus] [Plugin: Ambrosite Next/Previous Post Link Plus] Seeking beta testers](https://wordpress.org/support/topic/plugin-ambrosite-nextprevious-post-link-plus-seeking-beta-testers/)
 *  [gendem](https://wordpress.org/support/users/gendem/)
 * (@gendem)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/plugin-ambrosite-nextprevious-post-link-plus-seeking-beta-testers/page/2/#post-1605172)
 * Hi there,
 * I have a question for you about this plugin…I hope it’s an easy one.
 * First, some background. I have created a custom hierarchical taxonomy that I 
   use to filter the posts in a blog. This is done in the loop using this code:
 *     ```
       global $wp_query;
       query_posts(
           array_merge(
               array( 'personality' => 'geek'),
               $wp_query->query
           )
       );
       ```
   
 * where “personality” is the taxonomy name and “geek” is the value in question.
   So this shows only posts flagged with the geek personality.
 * Obviously next_post_link and previous_post_link don’t take a taxonomy into consideration,
   and they also seem not to use the returned results of the loop (which does), 
   which is irritating.
 * But it led me to this plugin, and I’m wondering if it’s possible to use what 
   you have to restrict the results based on the value of a custom taxonomy? So 
   for example, I’d like to code this:
 *  _Get the previous post where the personality is geek_.
 * or maybe
 *  _Get the previous post where the personality is not nerd_.
 * with “nerd” being another of the taxonomy values.
 * Trying
 *     ```
       <?php next_post_link_plus( array(
       	'format' => '%link &raquo;',
       	'link' => '%title',
       	'in_same_cat' => false,
       	'ex_cats' => '311',
       ) ); ?>
       ```
   
 * didn’t work (note that “311′ is the tag_ID of the “nerd” value).
 * …Mike
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Special characters in titles = title being skipped whe restoring a backup](https://wordpress.org/support/topic/special-characters-in-titles-title-being-skipped-whe-restoring-a-backup/)
 *  Thread Starter [gendem](https://wordpress.org/support/users/gendem/)
 * (@gendem)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/special-characters-in-titles-title-being-skipped-whe-restoring-a-backup/#post-1738599)
 * Is there a more technical forum where I should be asking these questions?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How do I modify the loop to show only posts of a specific custom taxonomy value?](https://wordpress.org/support/topic/how-do-i-modify-the-loop-to-show-only-posts-of-a-specific-custom-taxonomy-value/)
 *  Thread Starter [gendem](https://wordpress.org/support/users/gendem/)
 * (@gendem)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/how-do-i-modify-the-loop-to-show-only-posts-of-a-specific-custom-taxonomy-value/#post-1707113)
 * OK, I figured this out. For future reference, when you do the following
 * `query_posts( array( 'color' => 'red', 'showposts' => 10 ) );`
 * “red” should be the slug name, not the taxonomy value. This is what was tripping
   me up.
 * …Mike
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How do I modify the loop to show only posts of a specific custom taxonomy value?](https://wordpress.org/support/topic/how-do-i-modify-the-loop-to-show-only-posts-of-a-specific-custom-taxonomy-value/)
 *  Thread Starter [gendem](https://wordpress.org/support/users/gendem/)
 * (@gendem)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/how-do-i-modify-the-loop-to-show-only-posts-of-a-specific-custom-taxonomy-value/#post-1707098)
 * For example:
 *     ```
       <?php
       query_posts( array( 'color' => 'red', 'showposts' => 10 ) );
       ?>
       ```
   
 * returns everything regardless of the color it was assigned. From what I have 
   read, this should have worked if executed before the loop. Is it something simple
   I have missed?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How can I use an image as page/post navigation?](https://wordpress.org/support/topic/how-can-i-use-an-image-as-pagepost-navigation/)
 *  Thread Starter [gendem](https://wordpress.org/support/users/gendem/)
 * (@gendem)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/how-can-i-use-an-image-as-pagepost-navigation/#post-1344952)
 * For clarification, the issue I am having is that I can’t include php statements
   in the previous_posts_link() call. And without this ability, I can’t create the
   url to point to the theme folder in a portable way.
 * In other words
 * `previous_posts_link('<img src="get_bloginfo(stylesheet_directory)/arrow.png"
   >');`
 * doesn’t work. I can’t be the first person to ask for this, but I ahve yet to 
   find a solution.
 * …Mike
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [How to show posts having both a specified category and tag applied](https://wordpress.org/support/topic/how-to-show-posts-having-both-a-specified-category-and-tag-applied/)
 *  Thread Starter [gendem](https://wordpress.org/support/users/gendem/)
 * (@gendem)
 * [16 years, 4 months ago](https://wordpress.org/support/topic/how-to-show-posts-having-both-a-specified-category-and-tag-applied/#post-1316434)
 * I’ll just use categories then until this is sorted out.
 * As for the second part, [this post](http://wordpress.org/support/topic/273357?replies=3)
   gave me the answer 🙂
 * Thanks
 * …Mike
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to strip all formatting from wp_get_categories(), including trailng <br>](https://wordpress.org/support/topic/how-to-strip-all-formatting-from-wp_get_categories-including-trailng-ltbrgt/)
 *  Thread Starter [gendem](https://wordpress.org/support/users/gendem/)
 * (@gendem)
 * [16 years, 4 months ago](https://wordpress.org/support/topic/how-to-strip-all-formatting-from-wp_get_categories-including-trailng-ltbrgt/#post-1309691)
 * To answer my opwn question, do it like this:
 * `<?php echo str_replace('<br />',' ', wp_list_categories('echo=0&style=&title_li
   ='));?>`
 * …Mike
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Cleaning up wp_postmeta: a question about relative vs. absolute paths](https://wordpress.org/support/topic/cleaning-up-wp_postmeta-a-question-about-relative-vs-absolute-paths/)
 *  Thread Starter [gendem](https://wordpress.org/support/users/gendem/)
 * (@gendem)
 * [16 years, 8 months ago](https://wordpress.org/support/topic/cleaning-up-wp_postmeta-a-question-about-relative-vs-absolute-paths/#post-1200194)
 * The answer to this question is yes, this is safe.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [[Plugin: Ajaxed WordPress] Comments hang after hitting ‘submit’](https://wordpress.org/support/topic/plugin-ajaxed-wordpress-comments-hang-after-hitting-submit/)
 *  [gendem](https://wordpress.org/support/users/gendem/)
 * (@gendem)
 * [17 years, 2 months ago](https://wordpress.org/support/topic/plugin-ajaxed-wordpress-comments-hang-after-hitting-submit/#post-988271)
 * I have the same problem FWIW and haven’t found a solution yet 🙁
 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [WP 2.7.1 WPAU died on DB backup, and now the blog is not responding](https://wordpress.org/support/topic/wp-271-wpau-died-on-db-backup-and-now-the-blog-is-not-responding/)
 *  Thread Starter [gendem](https://wordpress.org/support/users/gendem/)
 * (@gendem)
 * [17 years, 2 months ago](https://wordpress.org/support/topic/wp-271-wpau-died-on-db-backup-and-now-the-blog-is-not-responding/#post-1007194)
 * Never mind, it worked itself out.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Importing with attachments is timing out and never completing](https://wordpress.org/support/topic/importing-with-attachments-is-timing-out-and-never-completing/)
 *  Thread Starter [gendem](https://wordpress.org/support/users/gendem/)
 * (@gendem)
 * [18 years, 1 month ago](https://wordpress.org/support/topic/importing-with-attachments-is-timing-out-and-never-completing/#post-736512)
 * It appears to be working now that I totally smoked my database (dropped the entire
   WP database structure), re-initialized as if the blog was brand new, and did 
   a fresh import. Hope this helps someone else.
 * …Mike
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Importing with attachments is timing out and never completing](https://wordpress.org/support/topic/importing-with-attachments-is-timing-out-and-never-completing/)
 *  Thread Starter [gendem](https://wordpress.org/support/users/gendem/)
 * (@gendem)
 * [18 years, 1 month ago](https://wordpress.org/support/topic/importing-with-attachments-is-timing-out-and-never-completing/#post-736383)
 * Could it be a congestion thing? A browser timeout limit? It gets to line 103 
   and then just stops each time.
 * …Mike
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How do I transfer images from wordpress.com to a custom hosted site?](https://wordpress.org/support/topic/how-do-i-transfer-images-from-wordpresscom-to-a-custom-hosted-site/)
 *  Thread Starter [gendem](https://wordpress.org/support/users/gendem/)
 * (@gendem)
 * [18 years, 1 month ago](https://wordpress.org/support/topic/how-do-i-transfer-images-from-wordpresscom-to-a-custom-hosted-site/page/2/#post-726827)
 * > Did you try turning on the “Import Attachments” checkbox?
 * I searched for this term and discovered a description of the feature. Turns out
   it is a feature of 2.5 which i could not see as the blog in question is 2.3.3.
 * So it has been fixed in the current version.
 * Thanks

Viewing 15 replies - 1 through 15 (of 26 total)

1 [2](https://wordpress.org/support/users/gendem/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/gendem/replies/page/2/?output_format=md)