Title: IMWild's Replies | WordPress.org

---

# IMWild

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Flickr Photostream] "Flickr API error: Photoset not found", but Photoset exists on Flickr](https://wordpress.org/support/topic/flickr-api-error-photoset-not-found-but-photoset-exists-on-flickr/)
 *  Thread Starter [IMWild](https://wordpress.org/support/users/imwild/)
 * (@imwild)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/flickr-api-error-photoset-not-found-but-photoset-exists-on-flickr/#post-6342263)
 * **Update 2**
    I found a pattern, all the photosets that did not work contained
   private photos only.
 * Changing all the photos with batch editor from private to public was the solution!
   So the plugin works properly!
 * Hope this helps anyone in the future 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Bogo] filter menu /pages based on locale](https://wordpress.org/support/topic/filter-menu-pages-based-on-locale/)
 *  [IMWild](https://wordpress.org/support/users/imwild/)
 * (@imwild)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/filter-menu-pages-based-on-locale/#post-3584799)
 * I solved this issue by comparing the locale with the url prefix.
 * So if the locale is nl_NL, I split up the string by the ‘_’ character and take
   the ‘nl’ part. Now I take the post url: [http://www.blog.com/nl/post-id](http://www.blog.com/nl/post-id).
   Split the string with ‘//’, take the first element of the array. Then split with
   with ‘/’. And take the first element of that array. What you will get is ‘nl’
   for all Dutch pages.
 * With this information you can compare the page language to the locale language
   and decide whether to display a post or not. I achieved this with the following
   code.
 * Apologies because it’s not generic. You might need to adapt a few things in order
   for you to get it to work.
 *     ```
       <div class="navbar-collapse collapse">
                 <ul class="nav navbar-nav navbar-right">
       				<?php
       					$menu_args = array(
       						'sort_order' => 'DESC',
       						'sort_column' => 'menu_order',
       						'hierarchical' => 1,
       						'exclude' => '',
       						'include' => '',
       						'meta_key' => '',
       						'meta_value' => '',
       						'authors' => '',
       						'child_of' => 0,
       						'parent' => -1,
       						'exclude_tree' => '',
       						'number' => '',
       						'offset' => 0,
       						'post_type' => 'page',
       						'post_status' => 'publish'
       					); 
   
       					$mypages = get_pages($menu_args); 
   
       					$locale = get_locale();
       					$localeexpl = explode("_", $locale);
       					$locallang = $localeexpl[0];
       					//echo "Locale: ".$locallang."<br>";
       					$i_incl_posts = 0;
   
       					foreach( $mypages as $page ) {
       						$perm = get_page_link( $page->ID );
       						$permexplode = explode("//", $perm);
       						$urlwithouthttp = $permexplode[1]; // $string without http://
       						//echo $urlwithouthttp."<br>";
       						$chunks = explode("/", $urlwithouthttp);
       						$url_language = $chunks[1];
       						//echo "1".$url_language."<br>";
       						if ($url_language != 'nl' && $url_language != 'de') {
       							$url_language = 'en';
       						}
       						if ($url_language == $locallang){
       							$includedpages[$i_incl_posts] = $page->ID;
       							$i_incl_posts++;
       						}
       					};
       					$displaypages = implode(",", $includedpages);
       					//echo $displaypages;
       				?>
   
       			<div>
       				<ul class="menu">
       					<?php $args = array(
       						'authors'      => '',
       						'child_of'     => 0,
       						'date_format'  => get_option('date_format'),
       						'depth'        => 0,
       						'echo'         => 1,
       						'exclude'      => '',
       						'include'      => $displaypages,
       						'link_after'   => '',
       						'link_before'  => '',
       						'post_type'    => 'page',
       						'post_status'  => 'publish',
       						'show_date'    => '',
       						'sort_column'  => 'menu_order, post_title',
       						'title_li'     => '',
       						'walker'       => ''
       					); ?>
   
       					<?php wp_list_pages($args); ?>
       				</ul>
       			</div>
   
       			<?php $locale = get_locale();
       					if ('en_US' == $locale  ) { ?>
       								<?php $language = "Language"; ?>
       			<?php } elseif ('nl_NL' == $locale  ) { ?>
       								<?php $language = "Taal"; ?>
       			<?php } elseif ('de_DE' == $locale  ) { ?>
       								<?php $language = "Sprache"; ?>
       			<?php } else { ?>
       								<?php $language = "Language"; ?>
       			<?php } ?>
   
       			<div>
       				<ul class="menu">
       					<li><a><?php echo $language; ?></a>
       						<ul class="sub-menu">
       							<?php echo do_shortcode( '[bogo]' ); ?>
       						</ul>
       					</li>
       				</ul>
       			</div>
       			<script>
       				//If li has hyperlink, no padding, if no hyperlink, old padding
       				$( "#menu ul.language-switcher > li:has(a)" ).addClass( "nopadding" );
       			</script>
                 </ul>
               </div><!--/.nav-collapse -->
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Bogo] filter menu /pages based on locale](https://wordpress.org/support/topic/filter-menu-pages-based-on-locale/)
 *  [IMWild](https://wordpress.org/support/users/imwild/)
 * (@imwild)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/filter-menu-pages-based-on-locale/#post-3584796)
 * I am facing the same problem.
 * I am developing this website [http://waelboats.eu/](http://waelboats.eu/) and
   I’m using the bogo plug-in. It works really nice and simple.
 * The user creates a page and translates it. The user adds the pages to certain
   menus, each English page to the English menu, each Dutch page to the Dutch menu
   and so on. I want to eliminate the last step. I want to be able to filter my 
   pages based on the locale. This way I can make WordPress generate the menus based
   on the Locale. That would be really nice 🙂
 * So for example, If the locale is en_US, display only the pages which have the
   Locale property English. The locale property is already a property of the pages(
   as shown in the pages overview page). I tried some things but no success yet.
 *     ```
       <?php $args = array(
       	'locale' => en_US,
       	'_locale' => en_US,
       	'bogo_locale' => en_US,
       );
       $pages = get_pages($args);
       ?>
       ```
   
 * Is it possible to filter pages like this? Do I have to filter in a different 
   way? Or can I add the locale in any manner to pages so I can filter with the 
   locale?
 * I’d really appreciate a helping hand here.

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