Title: albertpr9's Replies | WordPress.org

---

# albertpr9

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: Verve Meta Boxes] wp 3.0 and post_types](https://wordpress.org/support/topic/plugin-verve-meta-boxes-wp-30-and-post_types/)
 *  [albertpr9](https://wordpress.org/support/users/albertpr9/)
 * (@albertpr9)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/plugin-verve-meta-boxes-wp-30-and-post_types/page/2/#post-1410419)
 * I just used jQuery to hide some elements from clients.
 * $(‘selector’).css(‘dispay’,’none’);
 * Change selector to the id/class of the item you need to hide.
 * It’s not the perfect solution, but it works, and it’s extremely quick to implement.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to Get all Custom Fields Except One(or some)?](https://wordpress.org/support/topic/how-to-get-all-custom-fields-except-oneor-some/)
 *  Thread Starter [albertpr9](https://wordpress.org/support/users/albertpr9/)
 * (@albertpr9)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/how-to-get-all-custom-fields-except-oneor-some/#post-1377018)
 *     ```
       <?php
   
         $custom_fields = get_post_custom(72);
         $my_custom_field = $custom_fields['my_custom_field'];
         foreach ( $my_custom_field as $key => $value )
           echo $key . " => " . $value . "<br />";
   
       ?>
       ```
   
 * Ok. So I type my custom field in place of “my_custom_field” and use `$post->ID;`
   instead of the post number, to get the proper post ID inside the loop..
 * It worked for me to get all values from one custom field separately.
 * What I want to do is get all values from all custom fields, except specific custom
   fields. Example;
 * `<?php the_meta(); ?>`
 * That will give me all custom key values, but I would like it not to fetch key_5
   for example.
 * Cheers
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Hide posts from “index”](https://wordpress.org/support/topic/hide-posts-from-index/)
 *  Thread Starter [albertpr9](https://wordpress.org/support/users/albertpr9/)
 * (@albertpr9)
 * [17 years, 1 month ago](https://wordpress.org/support/topic/hide-posts-from-index/#post-1026221)
 * I was able to fix it!!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Show titles from only one category](https://wordpress.org/support/topic/show-titles-from-only-one-category/)
 *  [albertpr9](https://wordpress.org/support/users/albertpr9/)
 * (@albertpr9)
 * [17 years, 1 month ago](https://wordpress.org/support/topic/show-titles-from-only-one-category/#post-1017132)
 * Don’t forget to change ‘wordpress’ to your own category.
 * What should I add to the code to bring out the title + the excerpt?
 * Cheers!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Display only posts from a certain Category on a Page.](https://wordpress.org/support/topic/display-only-posts-from-a-certain-category-on-a-page/)
 *  Thread Starter [albertpr9](https://wordpress.org/support/users/albertpr9/)
 * (@albertpr9)
 * [17 years, 2 months ago](https://wordpress.org/support/topic/display-only-posts-from-a-certain-category-on-a-page/#post-1018097)
 * awesome! Thanks!

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