Title: External11's Replies | WordPress.org

---

# External11

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Sort taxonomies shown in the menu](https://wordpress.org/support/topic/sort-taxonomies-shown-in-the-menu/)
 *  Thread Starter [External11](https://wordpress.org/support/users/external11/)
 * (@external11)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/sort-taxonomies-shown-in-the-menu/#post-4192795)
 * closing
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Sort taxonomies shown in the menu](https://wordpress.org/support/topic/sort-taxonomies-shown-in-the-menu/)
 *  Thread Starter [External11](https://wordpress.org/support/users/external11/)
 * (@external11)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/sort-taxonomies-shown-in-the-menu/#post-4192794)
 * works like a charm, big thanks!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [List a page which has the same title like current post's meta value](https://wordpress.org/support/topic/list-a-page-which-has-the-same-title-like-current-posts-meta-value/)
 *  Thread Starter [External11](https://wordpress.org/support/users/external11/)
 * (@external11)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/list-a-page-which-has-the-same-title-like-current-posts-meta-value/#post-3637367)
 * Hi Alchymyth,
 * This function retrieves a post given its title. If more that one post uses the
   same title, the post with the smallest ID will be returned.
 * However I need to ‘order’=>’ASC’, ‘orderby’=>’date’.
 * It seems like to solution is not that easy…
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [List a page which has the same title like current post's meta value](https://wordpress.org/support/topic/list-a-page-which-has-the-same-title-like-current-posts-meta-value/)
 *  Thread Starter [External11](https://wordpress.org/support/users/external11/)
 * (@external11)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/list-a-page-which-has-the-same-title-like-current-posts-meta-value/#post-3637362)
 * none of the codes is working.
 * By the way here is the difference:
 * name (string) – use post slug.
    pagename (string) – use page slug.
 * maybe it is necessary to sanitize the title already on he first row.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [List a page which has the same title like current post's meta value](https://wordpress.org/support/topic/list-a-page-which-has-the-same-title-like-current-posts-meta-value/)
 *  Thread Starter [External11](https://wordpress.org/support/users/external11/)
 * (@external11)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/list-a-page-which-has-the-same-title-like-current-posts-meta-value/#post-3637354)
 * I tried this but it is showing no results:
 *     ```
       <?php
       	   $pagetitle = get_post_meta($post->ID, 'car_model_range', TRUE);
            $args=array(
            'post_type' => 'page',
            'post_status' => 'publish',
            'pagename' => sanitize_title($pagetitle),
            'order'=>'ASC',
            'orderby'=>'date',
            'posts_per_page' => 1,
       	   );
       	$my_query = new WP_Query($args);
       	if( $my_query->have_posts() ) {
       	  while ($my_query->have_posts()) : $my_query->the_post(); ?>
       <?php get_template_part( 'partials/caritem', 'page' ); ?>
       	    <?php
       	  endwhile;
       	}
       ?>
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [If meta value is X, then this, otherwise that](https://wordpress.org/support/topic/if-meta-value-is-x-then-this-otherwise-that/)
 *  Thread Starter [External11](https://wordpress.org/support/users/external11/)
 * (@external11)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/if-meta-value-is-x-then-this-otherwise-that/#post-3563394)
 * this is not working, the result is
 * Yes2011-present Pagani Huayra
    No2009 Pagani Zonda R
 * for `<?php if( the_field('in_production')== 'Yes' ) echo date('Y'); else the_field('
   production_years'); ?> <?php the_title(); ?>`
 * as you can see, it is also printing the Yes/No
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [More meta values in filtering posts](https://wordpress.org/support/topic/more-meta-values-in-filtering-posts/)
 *  Thread Starter [External11](https://wordpress.org/support/users/external11/)
 * (@external11)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/more-meta-values-in-filtering-posts/#post-3560383)
 * Works like a charm!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook Comments by Fat Panda] [Plugin: Facebook Comments by Fat Panda] Disable Meta Tags](https://wordpress.org/support/topic/plugin-facebook-comments-by-fat-panda-disable-meta-tags/)
 *  [External11](https://wordpress.org/support/users/external11/)
 * (@external11)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/plugin-facebook-comments-by-fat-panda-disable-meta-tags/#post-3060281)
 * Exactly what I was looking for 🙂 Works perfectly. But if you update WordPress,
   the functions.php file gets overwritten, isn’t it?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to exclude parent category from listing posts in sidebar](https://wordpress.org/support/topic/how-to-exclude-parent-category-from-listing-posts-in-sidebar/)
 *  Thread Starter [External11](https://wordpress.org/support/users/external11/)
 * (@external11)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/how-to-exclude-parent-category-from-listing-posts-in-sidebar/#post-3355137)
 * Hi Andrew,
    I’ve modified the template, however the result is the same yet… Have
   you tested it? Thank you
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to exclude parent category from listing posts in sidebar](https://wordpress.org/support/topic/how-to-exclude-parent-category-from-listing-posts-in-sidebar/)
 *  Thread Starter [External11](https://wordpress.org/support/users/external11/)
 * (@external11)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/how-to-exclude-parent-category-from-listing-posts-in-sidebar/#post-3354981)
 * Hi Andrew, thank you but I need to replace the number with a variable. I have
   a lot of categories…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple Post Views Counter] [Plugin: Simple Post Views Counter] Statistics request](https://wordpress.org/support/topic/plugin-simple-post-views-counter-statistics-request/)
 *  Thread Starter [External11](https://wordpress.org/support/users/external11/)
 * (@external11)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-simple-post-views-counter-statistics-request/#post-3130134)
 * It would be really great to have 3 php codes: one to insert to a post, which 
   will count up views, second one just for showing the views (without counting 
   them) and a third one showing a list of top viewed posts (in this case it would
   be perfect to be able to specify number of posts, and for how many recent days
   would it count). Just some development ideas…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple Post Views Counter] [Plugin: Simple Post Views Counter] Statistics request](https://wordpress.org/support/topic/plugin-simple-post-views-counter-statistics-request/)
 *  Thread Starter [External11](https://wordpress.org/support/users/external11/)
 * (@external11)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-simple-post-views-counter-statistics-request/#post-3130061)
 * Hello,
 * I want to show number of views in the category view and also on index page.
 * I am using your plugin on following site:
 * [firm-guide.com/](http://firm-guide.com/)
 * Thank you for your support.

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