Changeset 3000428
- Timestamp:
- 11/23/2023 01:48:38 AM (2 years ago)
- Location:
- part-content-encryption/trunk
- Files:
-
- 2 edited
-
index.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
part-content-encryption/trunk/index.php
r2999965 r3000428 2 2 /** 3 3 * @package article_PW 4 * @version 1.1 4 * @version 1.1.1 5 5 */ 6 6 /* … … 9 9 Description: WP自带的文章或页面加密码,只能是整编文章或页面,此插件可以部分内容加密;写文章或页面时,只需加短代码标签[pw key="密码"]需要加密的内容[/pw] 10 10 Author: MailBerry 11 Version: 1.1 11 Version: 1.1.1 12 12 Author URI: https://mailberry.com.cn 13 13 */ … … 15 15 function e_encryption_enqueue_style() 16 16 { 17 wp_enqueue_style('encryption-style', plugins_url('/style.css', __FILE__), array(), '1. 0.0', 'all');17 wp_enqueue_style('encryption-style', plugins_url('/style.css', __FILE__), array(), '1.1.1', 'all'); 18 18 } 19 19 add_action('wp_enqueue_scripts', 'e_encryption_enqueue_style'); -
part-content-encryption/trunk/readme.txt
r2999965 r3000428 3 3 Tags: part content encryption 4 4 Donate link: 捐款链接地址 5 Requires at least: 6.4.15 Requires at least: 5.0 6 6 Tested up to: 6.4 7 7 Requires PHP: 5.6 8 Stable tag: 1.1 8 Stable tag: 1.1.1 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 40 40 41 41 == Changelog == 42 === 1.1.1 === 43 修改样式版本号 42 44 === 1.1 === 43 45 修改样式,增加响应样式,修正兼容最新6.4以上版本
Note: See TracChangeset
for help on using the changeset viewer.