Title: Google Reader Plugin
Last modified: August 18, 2016

---

# Google Reader Plugin

 *  [oxfire](https://wordpress.org/support/users/oxfire/)
 * (@oxfire)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/google-reader-plugin/)
 * I am looking for a plugin that will show my “shared items” on Google Reader. 
   I have a feed for it, and you can see that it has its own page here: [http://www.google.com/reader/shared/11261289401220609938](http://www.google.com/reader/shared/11261289401220609938).
 * I am wanting for that page to show up on my wordpress blog including pics, and
   the entire post. Is this possible??

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

 *  [rudolf45](https://wordpress.org/support/users/rudolf45/)
 * (@rudolf45)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/google-reader-plugin/#post-554280)
 * It has a feed: [http://www.google.com/reader/public/atom/user/11261289401220609938/state/com.google/broadcast](http://www.google.com/reader/public/atom/user/11261289401220609938/state/com.google/broadcast)
   
   Why don’t you use it?
 *  Thread Starter [oxfire](https://wordpress.org/support/users/oxfire/)
 * (@oxfire)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/google-reader-plugin/#post-554335)
 * I mean, a plugin that will i guess…automatically post the items i add to the 
   shared items list.
 *  [Chris_K](https://wordpress.org/support/users/handysolo/)
 * (@handysolo)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/google-reader-plugin/#post-554341)
 * Not a plugin, but…
 * While in Google Reader, click on “Shared Items” (upper left).
 * At the top, see the link in
 * > You can also copy and paste code to put a clip of your shared items on your
   > site.
 * Click that link. You get a popup with a bit of HTML. Copy that bit of HTML and
   paste into your theme, whereever you want it to show up. Or if using widgets,
   I think you can just paste it into a text widget.
 *  Thread Starter [oxfire](https://wordpress.org/support/users/oxfire/)
 * (@oxfire)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/google-reader-plugin/#post-554390)
 * But I am looking for something that will actually post it into WordPress. I am
   aware of the html bit, but I wanted for it to be posted, and show the entire 
   text with images. Possible?? Oh, and thanks so much for the replies guys!!
 *  [Chris_K](https://wordpress.org/support/users/handysolo/)
 * (@handysolo)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/google-reader-plugin/#post-554399)
 * Well, there are some plugins that can take any feed and “syndicate” it as posts.
   You’ll find some here:
 * [http://codex.wordpress.org/Plugins/Syndication](http://codex.wordpress.org/Plugins/Syndication)
 *  [matthiasb](https://wordpress.org/support/users/matthiasb/)
 * (@matthiasb)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/google-reader-plugin/#post-554430)
 * You can also use this plugin to include your items on your blog (via a template
   tag).
 * [http://www.tfn.be/2007/04/28/grsip/](http://www.tfn.be/2007/04/28/grsip/)
 *  [doc_holiday](https://wordpress.org/support/users/doc_holiday/)
 * (@doc_holiday)
 * [18 years, 10 months ago](https://wordpress.org/support/topic/google-reader-plugin/#post-554462)
 * This is how you can create a blog roll list (just the links and titles):
 * 1. Generate some code using the instructions and widget here:
 * [http://googlesystem.blogspot.com/2007/08/blogroll-powered-by-google-reader.html](http://googlesystem.blogspot.com/2007/08/blogroll-powered-by-google-reader.html)
 * 2. Create a custom page template. In my case, I just copied the page.php default
   file in my theme to another file called feedpage.php and just added the code 
   from step one, plus the header information as specified in: [http://codex.wordpress.org/Pages](http://codex.wordpress.org/Pages)
 * 3. Then go ahead and create your page as normal with whatever title and introductory
   text that you want to have to your blog roll, but select your new page template
   that you have just created. (as opposed to the default one)
 * 4. Publish it. Done!
 * You can see my finished product [here](http://donovanpalmer.com/feeds/):
 * Here is my custom page template which did the job:
 *     ```
       <?php
       /*
       Template Name: FeedPage
       */
       ?>
   
       <?php get_header(); ?>
   
       <div id="content">
   
       <?php include(TEMPLATEPATH."/l_sidebar.php");?>
   
       <div id="contentmiddle">
       	<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
       	<h1><?php the_title(); ?></h1>
       	<?php the_content(__('Read more'));?>
   
       <div id='blog_roll_28951'>
   
         <script type='text/javascript'>
        function build_bloglist_28951(data) {
          var container = document.getElementById('blog_roll_28951');
          var list = document.createElement('div');
          for (var i=0; i < data.items.length; i++) {
           var item = data.items[i];
          if (item.alternate){
             var link = document.createElement('a');
            link.appendChild(document.createTextNode(item.title));
             link.href = item.alternate.href;
             list.appendChild(link);
            list.appendChild(document.createElement('br'));
          }
         }
         container.appendChild(list);
        }
        </script>
   
         <script src='http://www.google.com/reader/public/javascript-sub/user/078669578670522186/label/blog-roll?callback=build_bloglist_28951' type='text/javascript'></script>
        <div align='right' style='margin-top:15px; font-size:85%;'><a href='http://www.google.com/reader/public/subscriptions/user/09961869578670522186/label/blog-roll'>Save as OPML</a>  (<a href='http://en.wikipedia.org/wiki/OPML'>?</a>)  </div>
        </div>
   
               <?php edit_post_link('(Edit Page)', '', ''); ?>
       	<!--
       	<?php trackback_rdf(); ?>
       	-->
   
       	<?php endwhile; else: ?>
   
       	<p><?php _e('Sorry, no posts matched your criteria.'); ?></p><?php endif; ?>
       	</div>
   
       <?php include(TEMPLATEPATH."/r_sidebar.php");?>
   
       </div>
   
       <!-- The main column ends  -->
   
       <?php get_footer(); ?>
       ```
   
 *  [blackmail](https://wordpress.org/support/users/blackmail/)
 * (@blackmail)
 * [18 years, 2 months ago](https://wordpress.org/support/topic/google-reader-plugin/#post-554508)
 * I’m looking for the same thing oxfire is asking about and I’m not sure that was
   answered in the thread. Can anyone point to a plugin that solves this problem,
   or is it time to give up and make headway for Tumblr?

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

The topic ‘Google Reader Plugin’ is closed to new replies.

## Tags

 * [item](https://wordpress.org/support/topic-tag/item/)
 * [RSS](https://wordpress.org/support/topic-tag/rss/)

 * 8 replies
 * 6 participants
 * Last reply from: [blackmail](https://wordpress.org/support/users/blackmail/)
 * Last activity: [18 years, 2 months ago](https://wordpress.org/support/topic/google-reader-plugin/#post-554508)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
