Version Description
- Confirm that plugin works fine with WordPress 3.2.1.
Download this release
Release Info
Developer | Marios Alexandrou |
Plugin | RSS Includes Pages |
Version | 1.3 |
Comparing to | |
See all releases |
Code changes from version 1.2 to 1.3
- readme.txt +6 -3
- rss-includes-pages.php +3 -3
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: marios-alexandrou
|
3 |
Tags: rss, feed, feeds, pages
|
4 |
Requires at least: 2.5
|
5 |
-
Tested up to: 2.
|
6 |
-
Stable tag: 1.
|
7 |
|
8 |
Modifies RSS feeds so that they include pages and not just posts.
|
9 |
|
@@ -15,7 +15,7 @@ Including pages in your feed is particularly useful if you're using WordPress as
|
|
15 |
|
16 |
== Installation ==
|
17 |
|
18 |
-
1. Upload the rss-includes-feeds folder to the
|
19 |
2. Activate the plugin through the 'Plugins' menu in WordPress
|
20 |
|
21 |
== Frequently Asked Questions ==
|
@@ -58,3 +58,6 @@ http://wordpress.org/extend/plugins/real-time-find-and-replace/
|
|
58 |
|
59 |
= 1.2 =
|
60 |
* FAQ updates and confirming plugin works with WordPress 2.9.2.
|
|
|
|
|
|
2 |
Contributors: marios-alexandrou
|
3 |
Tags: rss, feed, feeds, pages
|
4 |
Requires at least: 2.5
|
5 |
+
Tested up to: 3.2.1
|
6 |
+
Stable tag: 1.3
|
7 |
|
8 |
Modifies RSS feeds so that they include pages and not just posts.
|
9 |
|
15 |
|
16 |
== Installation ==
|
17 |
|
18 |
+
1. Upload the rss-includes-feeds folder to the '/wp-content/plugins/' directory
|
19 |
2. Activate the plugin through the 'Plugins' menu in WordPress
|
20 |
|
21 |
== Frequently Asked Questions ==
|
58 |
|
59 |
= 1.2 =
|
60 |
* FAQ updates and confirming plugin works with WordPress 2.9.2.
|
61 |
+
|
62 |
+
= 1.3 =
|
63 |
+
* Confirm that plugin works fine with WordPress 3.2.1.
|
rss-includes-pages.php
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: RSS Includes Pages
|
4 |
-
Version: 1.
|
5 |
-
Plugin URI: http://
|
6 |
Description: Include pages (not just posts) in RSS feeds. Particularly useful to those that use WordPress as a CMS.
|
7 |
Author: Marios Alexandrou
|
8 |
-
Author URI: http://
|
9 |
*/
|
10 |
add_filter('posts_where', 'ma_posts_where');
|
11 |
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: RSS Includes Pages
|
4 |
+
Version: 1.3
|
5 |
+
Plugin URI: http://infolific.com/technology/software-worth-using/include-pages-in-wordpress-rss-feeds/
|
6 |
Description: Include pages (not just posts) in RSS feeds. Particularly useful to those that use WordPress as a CMS.
|
7 |
Author: Marios Alexandrou
|
8 |
+
Author URI: http://infolific.com/technology/
|
9 |
*/
|
10 |
add_filter('posts_where', 'ma_posts_where');
|
11 |
|