Changeset 953243
- Timestamp:
- 07/23/2014 06:06:01 AM (12 years ago)
- Location:
- auto-files/trunk
- Files:
-
- 2 edited
-
autofiles.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
auto-files/trunk/autofiles.php
r944333 r953243 4 4 Plugin URI: http://wpadami.com/cms-sistemleri/wordpress/auto-files-mini-bir-auto-attachments.html 5 5 Description: This plugin is minified version of Auto Attachments. Supported attachment types are Word, Excel, Pdf, PowerPoint, zip, rar, tar, tar.gz 6 Version: 0. 26 Version: 0.3 7 7 Author: Serkan Algur 8 8 Author URI: http://www.wpadami.com … … 80 80 $metapage = get_post_meta($post->ID,'aa_page_meta',TRUE); 81 81 if (get_post_type() == 'post') { 82 if (!post_password_required() && $metapost['show'] == 'yes'){82 if (!post_password_required() && ($metapost['show'] == 'yes' || $metapost['show'] == null || $metapost['fshow'] == yes)){ 83 83 $content .= autof_show_files(); 84 84 return $content; … … 89 89 90 90 if (get_post_type() == 'page'){ 91 if (!post_password_required() && $metapage['show'] == 'yes'){91 if (!post_password_required() && ($metapage['show'] == 'yes' || $metapage['show'] == null || $metapage['fshow'] == 'yes')){ 92 92 $content .= autof_show_files(); 93 93 return $content; -
auto-files/trunk/readme.txt
r944333 r953243 33 33 == Changelog == 34 34 35 = Version 0.3 = 36 * Fixes for file attachments show. Auto Attachments settings fully supported with this version. 37 35 38 = Version 0.2 = 36 39 * Users can hide Auto Files from page and posts. Users will find a metabox each page/post edit area.
Note: See TracChangeset
for help on using the changeset viewer.