Version Description
Download this release
Release Info
Developer | radgeek |
Plugin | FeedWordPress |
Version | 2022.0208 |
Comparing to | |
See all releases |
Code changes from version 2022.0204 to 2022.0208
- feeds-page.php +2 -2
- feedwordpress.php +3 -3
- readme.txt +1 -1
feeds-page.php
CHANGED
@@ -946,7 +946,7 @@ class FeedWordPressFeedsPage extends FeedWordPressAdminPage {
|
|
946 |
$feed_version = '';
|
947 |
endif;
|
948 |
?>
|
949 |
-
<form<?php print fwp_form_class_attr($form_class); ?> action="<?php print esc_url( $this->form_action( 'syndication.php' ) ); ?>" method="post">
|
950 |
<div class="inside"><?php FeedWordPressCompatibility::stamp_nonce('feedwordpress_switchfeed'); ?>
|
951 |
|
952 |
<?php
|
@@ -995,7 +995,7 @@ class FeedWordPressFeedsPage extends FeedWordPressAdminPage {
|
|
995 |
<li><strong>Date:</strong> <?php print date('d-M-y g:i:s a', $post->published()); ?></li>
|
996 |
</ul>
|
997 |
<div class="entry">
|
998 |
-
<?php print wp_kses( $post->post['post_content'] ); ?>
|
999 |
</div>
|
1000 |
<?php
|
1001 |
do_action('feedwordpress_feed_finder_sample_item', $f, $post, $link);
|
946 |
$feed_version = '';
|
947 |
endif;
|
948 |
?>
|
949 |
+
<form <?php print fwp_form_class_attr($form_class); ?> action="<?php print esc_url( $this->form_action( 'syndication.php' ) ); ?>" method="post">
|
950 |
<div class="inside"><?php FeedWordPressCompatibility::stamp_nonce('feedwordpress_switchfeed'); ?>
|
951 |
|
952 |
<?php
|
995 |
<li><strong>Date:</strong> <?php print date('d-M-y g:i:s a', $post->published()); ?></li>
|
996 |
</ul>
|
997 |
<div class="entry">
|
998 |
+
<?php print wp_kses( $post->post['post_content'], 'post' ); ?>
|
999 |
</div>
|
1000 |
<?php
|
1001 |
do_action('feedwordpress_feed_finder_sample_item', $f, $post, $link);
|
feedwordpress.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: FeedWordPress
|
4 |
Plugin URI: http://feedwordpress.radgeek.com/
|
5 |
Description: simple and flexible Atom/RSS syndication for WordPress
|
6 |
-
Version: 2022.
|
7 |
Author: C. Johnson
|
8 |
Author URI: https://feedwordpress.radgeek.com/contact/
|
9 |
License: GPL
|
@@ -11,7 +11,7 @@ License: GPL
|
|
11 |
|
12 |
/**
|
13 |
* @package FeedWordPress
|
14 |
-
* @version 2022.
|
15 |
*/
|
16 |
|
17 |
# This plugin uses code derived from:
|
@@ -30,7 +30,7 @@ License: GPL
|
|
30 |
## CONSTANTS & DEFAULTS ############################################################
|
31 |
####################################################################################
|
32 |
|
33 |
-
define ('FEEDWORDPRESS_VERSION', '2022.
|
34 |
define ('FEEDWORDPRESS_AUTHOR_CONTACT', 'http://feedwordpress.radgeek.com/contact');
|
35 |
|
36 |
if (!defined('FEEDWORDPRESS_BLEG')) :
|
3 |
Plugin Name: FeedWordPress
|
4 |
Plugin URI: http://feedwordpress.radgeek.com/
|
5 |
Description: simple and flexible Atom/RSS syndication for WordPress
|
6 |
+
Version: 2022.0208
|
7 |
Author: C. Johnson
|
8 |
Author URI: https://feedwordpress.radgeek.com/contact/
|
9 |
License: GPL
|
11 |
|
12 |
/**
|
13 |
* @package FeedWordPress
|
14 |
+
* @version 2022.0208
|
15 |
*/
|
16 |
|
17 |
# This plugin uses code derived from:
|
30 |
## CONSTANTS & DEFAULTS ############################################################
|
31 |
####################################################################################
|
32 |
|
33 |
+
define ('FEEDWORDPRESS_VERSION', '2022.0208');
|
34 |
define ('FEEDWORDPRESS_AUTHOR_CONTACT', 'http://feedwordpress.radgeek.com/contact');
|
35 |
|
36 |
if (!defined('FEEDWORDPRESS_BLEG')) :
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://feedwordpress.radgeek.com/donate/
|
|
4 |
Tags: syndication, aggregation, feed, atom, rss
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 5.9
|
7 |
-
Stable tag: 2022.
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
4 |
Tags: syndication, aggregation, feed, atom, rss
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 5.9
|
7 |
+
Stable tag: 2022.0208
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|