Advertisement
Guest User

Untitled

a guest
Jun 24th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. '<?php
  2.  
  3. // The Query
  4. $user_query = new WP_User_Query( $args );
  5.  
  6. // User Loop
  7. if ( ! empty( $user_query->results ) ) {
  8. foreach ( $user_query->results as $user ) {
  9.  
  10. ?> <option value="<?php echo get_user_meta($user->ID, 'user_designation', true); ?>" <?php if (isset($design) && $design=="Web Developer") echo "selected"; ?> ><?php echo get_user_meta($user->ID, 'user_designation', true); ?></option><?php
  11. }
  12. } else {
  13. ?><option value="0">No Category Found</option><?php
  14. }
  15. ?>
  16.  
  17.  
  18. </select>
  19. </form></li></ul>
  20.  
  21. </ul>
  22. </section>
  23. <div style="clear:both"></div>
  24.  
  25. <aside id="sidebar-post-listing" class="post-listing-sidebar sidebar large-3 small-12 columns">
  26.  
  27. </aside>
  28.  
  29. </div>
  30. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement