最近,(mobantu.com)给用户开发了一个游客相册预览几张图片的功能,意思就是未登录的用户可以浏览几张图片,其他图片显示为毛玻璃状态,登录后可正常浏览相册的全部图片。
涉及到给相册添加自定义字段的代码如下,加到主题的functions.php里:
1 |
add_action('print_media_templates', function(){ ?> <script type="text/html" id="tmpl-my-custom-gallery-setting"> <span class="setting"> <label for="gallery-settings-preview" class="name">游客预览数</label> <input type="text" id="gallery-settings-preview" name="preview" data-setting="preview" style="float: left;width: 100px" /> </span> </script> <script> jQuery(document).ready(function(){ _.extend(wp.media.gallery.defaults, { preview: '' }); wp.media.view.Settings.Gallery = wp.media.view.Settings.Gallery.extend({ template: function(view){ return wp.media.template('gallery-settings')(view) + wp.media.template('my-custom-gallery-setting')(view); } }); }); </script> <?php }); |
当然,还可以增加仅限VIP查看,可配合我们的erphpdown插件来实现~
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。