Changeset 2754088
- Timestamp:
- 07/09/2022 06:56:27 PM (4 years ago)
- Location:
- terms-descriptions/trunk
- Files:
-
- 3 edited
-
includes/parsers/td_parser.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
terms-descriptions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
terms-descriptions/trunk/includes/parsers/td_parser.php
r2720242 r2754088 121 121 protected function is_current_post( $id ) { 122 122 global $post; 123 return ( $post->ID === ( int )$id ) ? true : false;123 return ( is_object( $post ) && property_exists( $post, 'ID' ) && $post->ID === ( int )$id ) ? true : false; 124 124 } 125 125 -
terms-descriptions/trunk/readme.txt
r2738624 r2754088 79 79 == Changelog == 80 80 81 = 3.4.3 = 82 83 * Bug fixes: variable type check added (https://github.com/vladimir-s/terms-descriptions/issues/5) 84 81 85 = 3.4.2 = 82 86 -
terms-descriptions/trunk/terms-descriptions.php
r2738624 r2754088 4 4 Plugin URI: https://simplecoding.org/plagin-wordpress-terms-descriptions 5 5 Description: This plugin allows you to create list of terms and assign links to them. Plugin automatically replaces terms occurrences in your posts with appropriate links. You can control the number of replacements. After activation you can create terms list on plugin administration page (Tools -> Terms Descriptions). 6 Version: 3.4. 26 Version: 3.4.3 7 7 Author: Vladimir Statsenko 8 8 Author URI: https://simplecoding.org
Note: See TracChangeset
for help on using the changeset viewer.