Changeset 1959864
- Timestamp:
- 10/20/2018 05:32:43 PM (7 years ago)
- Location:
- wp-open-last-modified/trunk
- Files:
-
- 2 edited
-
open_last_modified.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-open-last-modified/trunk/open_last_modified.php
r1943232 r1959864 4 4 * Plugin URI: www.dogan-ucar.de/wp-open-last-modified 5 5 * Description: WP Last Modified adds the ‚last_modified_date‘ shortcut to your WordPress installation. This shortcut shows the last timestamp of your post/page. Simply use the „format“ attribute for custom date formats (it uses PHP’s date() function). The "description" attribute enables a brief description which changes has been made with the last modification. This plugin shows also the actual revision of your post/page. You can customize the text which will be shown under each post/page under settings -> WP Last Modified Settings. 6 * Version: 1.4. 06 * Version: 1.4.1 7 7 * Author: Dogan Ucar 8 8 * Author URI: www.dogan-ucar.de … … 91 91 $text = $option->read( 'wpolm_text' ); 92 92 $array = json_decode( $ids ); 93 if ( i n_array( $post->ID, $array ) ) {93 if ( is_array( $array ) || in_array( $post->ID, $array ) ) { 94 94 return ""; 95 95 } -
wp-open-last-modified/trunk/readme.txt
r1943232 r1959864 39 39 40 40 == Changelog == 41 = 1.4.1 = 42 * bug fix 43 41 44 = 1.4.0 = 42 45 * excluding posts/pages
Note: See TracChangeset
for help on using the changeset viewer.