Title: Post Addon
Last modified: August 18, 2016

---

# Post Addon

 *  [mattc908](https://wordpress.org/support/users/mattc908/)
 * (@mattc908)
 * [18 years, 4 months ago](https://wordpress.org/support/topic/post-addon/)
 * Okay this is a weird request, basically was wondering is there a way on each 
   different post to add something on the right or left hand column that could only
   be viewed on the column. Let me give you an example, say I rate a movie and I
   want the rating to be on the column but only on that post. Anyway to do this?
   Any mod or widget or addon available for this?

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

 *  [jayef](https://wordpress.org/support/users/jayef/)
 * (@jayef)
 * [18 years, 4 months ago](https://wordpress.org/support/topic/post-addon/#post-658587)
 * I don’t think it’s possible unless you can somehow work out a HTML code that 
   works that way.
 * Anyway, lets just see what the other people say about this problem. 😉
 *  [Kafkaesqui](https://wordpress.org/support/users/kafkaesqui/)
 * (@kafkaesqui)
 * [18 years, 4 months ago](https://wordpress.org/support/topic/post-addon/#post-658635)
 * I’m not presently aware of any widgets that are post content-aware in any useful
   way to your request.
 * As for a ‘mod,’ one tool I like using because it’s built into WordPress (and 
   is quite useful if you know how to take advantage of it) is custom fields. For
   an example, you can use a custom field key of ‘rating,’ with the value being 
   the movie rating you’ve given.
 * Then in the sidebar you can add the following to collect and display the ‘rating’
   custom field:
 *     ```
       <?php
       global $post;
       $rating = get_post_meta($post->ID, 'rating', true);
       if( $rating ) : ?>
       <ul>
       <li>Rating: <?php echo $rating; ?></li>
       <ul>
       <?php endif; ?>
       ```
   
 * An enterprising widget developer could easily widgetize something like this…
 *  Thread Starter [mattc908](https://wordpress.org/support/users/mattc908/)
 * (@mattc908)
 * [18 years, 4 months ago](https://wordpress.org/support/topic/post-addon/#post-658903)
 * One other thing some blogs have like a mini gallery at the bottom that leads 
   to a photo gallery any clue on how to do this. The code works out fine! Thanks,
   Just wondering it appears very small, for me.
    [http://insightahoy.com/?p=104](http://insightahoy.com/?p=104)(
   Above Search) Anyway to change this?
 *  [Kafkaesqui](https://wordpress.org/support/users/kafkaesqui/)
 * (@kafkaesqui)
 * [18 years, 4 months ago](https://wordpress.org/support/topic/post-addon/#post-658905)
 * Lots of photo gallery options out there.
 * [http://codex.wordpress.org/Plugins/Images](http://codex.wordpress.org/Plugins/Images)
   
   [http://wordpress.org/extend/plugins/search.php?q=gallery](http://wordpress.org/extend/plugins/search.php?q=gallery)
 * RE: text size
 * Couple options. One is to place the rating in an <h2> with the rest of your sidebar’s
   headers (i.e. Search, Archives):
 * `<li><h2>Rating: <?php echo $rating; ?></h2></li>`
 * Second is to modify your list tag to include a class:
 * `<li class="rating">Rating: <?php echo $rating; ?></li>`
 * Then you can style this through your theme’s style.css.
 *  Thread Starter [mattc908](https://wordpress.org/support/users/mattc908/)
 * (@mattc908)
 * [18 years, 4 months ago](https://wordpress.org/support/topic/post-addon/#post-658955)
 * Thanks for the help!

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

The topic ‘Post Addon’ is closed to new replies.

 * 5 replies
 * 3 participants
 * Last reply from: [mattc908](https://wordpress.org/support/users/mattc908/)
 * Last activity: [18 years, 4 months ago](https://wordpress.org/support/topic/post-addon/#post-658955)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
