Changeset 3267509
- Timestamp:
- 04/06/2025 04:47:40 PM (12 months ago)
- Location:
- fast-short-news
- Files:
-
- 15 added
- 2 edited
-
tags/1.0.2 (added)
-
tags/1.0.2/README.md (added)
-
tags/1.0.2/assets (added)
-
tags/1.0.2/assets/css (added)
-
tags/1.0.2/assets/css/short-news.css (added)
-
tags/1.0.2/assets/images (added)
-
tags/1.0.2/assets/js (added)
-
tags/1.0.2/assets/js/short-news.js (added)
-
tags/1.0.2/fast-short-news.php (added)
-
tags/1.0.2/languages (added)
-
tags/1.0.2/languages/fast-short-news-ar.l10n.php (added)
-
tags/1.0.2/languages/fast-short-news-ar.mo (added)
-
tags/1.0.2/languages/fast-short-news-ar.po (added)
-
tags/1.0.2/languages/fast-short-news.pot (added)
-
tags/1.0.2/uninstall.php (added)
-
trunk/README.md (modified) (2 diffs)
-
trunk/fast-short-news.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fast-short-news/trunk/README.md
r3265921 r3267509 6 6 Tested up to: 6.7 7 7 Requires PHP: 7.4 8 Stable tag: 1.0. 18 Stable tag: 1.0.2 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 41 41 == Changelog == 42 42 43 = 1.0.2 = 44 * Fix show HTML with shortcode [latest_short-news]. 45 43 46 = 1.0.1 = 44 47 * Fix show HTML on frontend. -
fast-short-news/trunk/fast-short-news.php
r3265920 r3267509 4 4 * Plugin URI: https://wordpress.org/plugins/fast-short-news 5 5 * Description: A plugin to fast post and display short news updates on the front-end page or widget. 6 * Version: 1.0. 16 * Version: 1.0.2 7 7 * Author: codnloc 8 8 * Author URI: http://codnloc.com/ … … 135 135 $output .= '<div class="latest-short-news-item">'; 136 136 $output .= '<span class="latest-short-news-time">' . esc_html( $post_time ) . ' </span>'; 137 $output .= '<span class="latest-short-news-content">' . esc_html( get_the_content()) . '</span>';137 $output .= '<span class="latest-short-news-content">' . get_the_content() . '</span>'; 138 138 $output .= '</div> '; 139 139 } … … 169 169 if ( 'content' === $column ) { 170 170 $content = get_the_content( $post_id ); 171 echo esc_html( $content );171 echo $content; 172 172 } 173 173 }
Note: See TracChangeset
for help on using the changeset viewer.