32 lines
1.3 KiB
PHP
32 lines
1.3 KiB
PHP
<?php
|
|
/*
|
|
Plugin Name: Convert Protection Text
|
|
Plugin URI: https://develop.n-k-y.net/wordpress/convert-protection-text
|
|
Author: NBK45
|
|
Author URI: https://develop.n-k-y.net
|
|
Description: Convert Protection Text はWordPressで記事(ページ)の公開状態を限定公開(「パスワード保護」)にしたときのテキストをカスタマイズするプラグインです。
|
|
Version: 1.0.1
|
|
License: GPLv2
|
|
*/
|
|
|
|
/* Copyright 2021 NBK45 (email : nbk.develop@gmail.com)
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License, version 2, as
|
|
published by the Free Software Foundation.
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
} // Exit if accessed directly
|
|
|
|
include_once __DIR__ . '/class/conv_protection_txt_settings.php';
|
|
include_once __DIR__ . '/class/class.conv_protection_txt.php';
|
|
|
|
new conv_protection_txt; |