Plugin Directory

Changeset 217817


Ignore:
Timestamp:
03/15/2010 06:47:23 PM (16 years ago)
Author:
frenchsquared
Message:

Fixed typos and added a correct readme.txt

Location:
rss-2-post
Files:
11 added
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • rss-2-post/trunk/readme.txt

    r216379 r217817  
     1=== RSS to Post ===
     2Contributors: Gordon French
     3Donate link: http://wordpress.gordonfrench.com
     4Tags: rss, feed, post, add to post, xml
     5Requires at least: 2.0.2
     6Tested up to: 2.9.2
     7Stable tag: 1.0.3
    18
    2  == RSS to Post ==
    3  
    4  This plugin will add itens from an rss feed to your blog.
    5  The items will show after the content on your single post.
    6  The will pull new content everytime the page loads thus
    7    helping with Google Rank since you will have new content on your
    8    single post pages.
     9RSS-to-post will add a items from an RSS Feed to the bottom of your post content.
     10
     11== Description ==
     12
     13This plugin will add items from an rss feed to your blog.
     14The items will show after the content on your single post.
     15The will pull new content every time the page loads thus
     16helping with Google Rank since you will have new content on your
     17single post pages.
    918
    1019 Enjoy!
    1120   Gordon French
    1221
    13  
    14  == Installation ==
     22== Installation ==
    1523
    1624 1. Upload the full directory into your wp-content/plugins directory
    1725 2. Activate it in the Plugin options
    1826 3. Set a default feed and enable the plugin under rss-to-post settings tab
    19  
    20  
    2127
    22  == Release History ==
     28== Frequently Asked Questions ==
    2329
    24  2010-03-10     1.0     First release
    25  2010-03-10     1.0.1   Fixed image path due to name change
     30= Can I change the colors =
    2631
    27  
    28  
    29  == License ==
    30 
    31  Copyright 2010 Gordon French  (email : frenchsquared@gmail.com)
     32The colors get there setting from your active theme, however you can change them yourself
     33by simply add these classes to your style sheet and change as you see fit.
     34.rssEntree {}
     35.rssTitle {}
    3236
    3337
    34  
    35  == Description ==
     38== Screenshots ==
    3639
    37  RSS-to-Post adds an RSS feed to each of your posts.
    38  This plugin allows the user to add an rss feed to the
    39  bottom of each post. There is a global setting for a default
    40  rss feed. Once the global feed url is set you can change, or
    41  disable the feed on individual posts. Rss-to-Post is a great way
    42  to keep new content coming to your posts, therefor helping with
    43  your Google Rating.
     401. How the feed entrees appear in your post
     412. Admin section of rss-to-post
     42
     43== Changelog ==
     44
     45= 1.0 =
     46* Original Release
     47
     48= 1.0.1 =
     49* Added ability to change amount of feed items to display
     50
     51= 1.0.3 =
     52* Fixed a few typos
     53
     54== Upgrade Notice ==
     55
     56= 1.0.3 =
     57Fixed several small bugs and spelling issues
     58
  • rss-2-post/trunk/rss-to-post.php

    r216370 r217817  
    33 * @package RSS to Post
    44 * @author Gordon French
    5  * @version 1.0.2
     5 * @version 1.0.3
    66 */
    77/*
     
    1111
    1212Author: Gordon French
    13 Version: 1.0.2
    14 Author URI: http://gordonfrench.com
     13Version: 1.0.3
     14Author URI: http://wordpress.gordonfrench.com
    1515*/
    1616
     
    133133           
    134134            <p>
    135             <b>Amoutn of Items:</b> <input type="text" size="3" name="rss_amount" value="<?php  echo $rssOptions['feed_amount']; ?>" /><br />
     135            <b>Amount of Items:</b>
     136            <input type="text" size="3" name="rss_amount" value="<?php  echo $rssOptions['feed_amount']; ?>" /><br />
    136137            <small>Numerical value for amount of feed items to display (1-10)</small></p>
    137138           
Note: See TracChangeset for help on using the changeset viewer.