mirror of https://github.com/vtrois/kratos
feat: add new shortcode (#179)
parent
b36a9df0fd
commit
e861f6e9a6
Binary file not shown.
After Width: | Height: | Size: 6.9 KiB |
|
@ -207,6 +207,22 @@
|
||||||
})
|
})
|
||||||
tinymce.PluginManager.add('bdbtn', tinymce.plugins.bdbtn)
|
tinymce.PluginManager.add('bdbtn', tinymce.plugins.bdbtn)
|
||||||
|
|
||||||
|
tinymce.create('tinymce.plugins.reply', {
|
||||||
|
init: function (ed, url) {
|
||||||
|
ed.addButton('reply', {
|
||||||
|
title: '回复可见',
|
||||||
|
image: url + '/images/reply.png',
|
||||||
|
onclick: function () {
|
||||||
|
ed.selection.setContent('[reply]' + ed.selection.getContent() + '[/reply]')
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
createControl: function (n, cm) {
|
||||||
|
return null
|
||||||
|
},
|
||||||
|
})
|
||||||
|
tinymce.PluginManager.add('reply', tinymce.plugins.reply)
|
||||||
|
|
||||||
tinymce.create('tinymce.plugins.music', {
|
tinymce.create('tinymce.plugins.music', {
|
||||||
init: function (ed, url) {
|
init: function (ed, url) {
|
||||||
ed.addButton('music', {
|
ed.addButton('music', {
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* 文章短代码
|
* 文章短代码
|
||||||
* @author Seaton Jiang <seaton@vtrois.com>
|
* @author Seaton Jiang <seaton@vtrois.com>
|
||||||
* @license MIT License
|
* @license MIT License
|
||||||
* @version 2020.04.12
|
* @version 2020.06.21
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function h2title($atts, $content = null, $code = "")
|
function h2title($atts, $content = null, $code = "")
|
||||||
|
@ -178,6 +178,44 @@ function bilibili($atts, $content = null, $code = "")
|
||||||
}
|
}
|
||||||
add_shortcode('bilibili', 'bilibili');
|
add_shortcode('bilibili', 'bilibili');
|
||||||
|
|
||||||
|
function reply($atts, $content = null)
|
||||||
|
{
|
||||||
|
extract(shortcode_atts(array("notice" => '<div class="alert alert-primary text-center" role="alert">'.__('温馨提示:此处内容已隐藏,<a href="#comments">回复</a>后刷新页面即可查看!', 'kratos').'</div>'), $atts));
|
||||||
|
$userEmail = null;
|
||||||
|
$user_ID = (int) wp_get_current_user()->ID;
|
||||||
|
if ($user_ID > 0) {
|
||||||
|
$userEmail = get_userdata($user_ID)->user_email;
|
||||||
|
$adminUsers = get_users('role=Administrator');
|
||||||
|
$adminEmails = array();
|
||||||
|
foreach ($adminUsers as $user) {
|
||||||
|
$adminEmails[] = $user->user_email;
|
||||||
|
}
|
||||||
|
$authorEmail = get_the_author_meta('user_email');
|
||||||
|
array_push($adminEmails, $authorEmail);
|
||||||
|
if (in_array($userEmail, $adminEmails)) {
|
||||||
|
return $content;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (isset($_COOKIE['comment_author_email_' . COOKIEHASH])) {
|
||||||
|
$userEmail = str_replace('%40', '@', $_COOKIE['comment_author_email_' . COOKIEHASH]);
|
||||||
|
} else {
|
||||||
|
return $notice;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (empty($userEmail)) {
|
||||||
|
return $notice;
|
||||||
|
}
|
||||||
|
global $wpdb;
|
||||||
|
$post_id = get_the_ID();
|
||||||
|
$query = "SELECT `comment_ID` FROM {$wpdb->comments} WHERE `comment_post_ID`={$post_id} and `comment_approved`='1' and `comment_author_email`='{$userEmail}' LIMIT 1";
|
||||||
|
if ($wpdb->get_results($query)) {
|
||||||
|
return do_shortcode($content);
|
||||||
|
} else {
|
||||||
|
return $notice;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
add_shortcode('reply', 'reply');
|
||||||
|
|
||||||
add_action('init', 'more_button');
|
add_action('init', 'more_button');
|
||||||
function more_button()
|
function more_button()
|
||||||
{
|
{
|
||||||
|
@ -206,6 +244,7 @@ function register_button($buttons)
|
||||||
array_push($buttons, " ", "mark");
|
array_push($buttons, " ", "mark");
|
||||||
array_push($buttons, " ", "striped");
|
array_push($buttons, " ", "striped");
|
||||||
array_push($buttons, " ", "bdbtn");
|
array_push($buttons, " ", "bdbtn");
|
||||||
|
array_push($buttons, " ", "reply");
|
||||||
array_push($buttons, " ", "music");
|
array_push($buttons, " ", "music");
|
||||||
array_push($buttons, " ", "vqq");
|
array_push($buttons, " ", "vqq");
|
||||||
array_push($buttons, " ", "youtube");
|
array_push($buttons, " ", "youtube");
|
||||||
|
@ -228,6 +267,7 @@ function add_plugin($plugin_array)
|
||||||
$plugin_array['mark'] = ASSET_PATH . '/assets/js/buttons/more.js';
|
$plugin_array['mark'] = ASSET_PATH . '/assets/js/buttons/more.js';
|
||||||
$plugin_array['striped'] = ASSET_PATH . '/assets/js/buttons/more.js';
|
$plugin_array['striped'] = ASSET_PATH . '/assets/js/buttons/more.js';
|
||||||
$plugin_array['bdbtn'] = ASSET_PATH . '/assets/js/buttons/more.js';
|
$plugin_array['bdbtn'] = ASSET_PATH . '/assets/js/buttons/more.js';
|
||||||
|
$plugin_array['reply'] = ASSET_PATH . '/assets/js/buttons/more.js';
|
||||||
$plugin_array['music'] = ASSET_PATH . '/assets/js/buttons/more.js';
|
$plugin_array['music'] = ASSET_PATH . '/assets/js/buttons/more.js';
|
||||||
$plugin_array['vqq'] = ASSET_PATH . '/assets/js/buttons/more.js';
|
$plugin_array['vqq'] = ASSET_PATH . '/assets/js/buttons/more.js';
|
||||||
$plugin_array['youtube'] = ASSET_PATH . '/assets/js/buttons/more.js';
|
$plugin_array['youtube'] = ASSET_PATH . '/assets/js/buttons/more.js';
|
||||||
|
|
|
@ -3,7 +3,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
||||||
"Project-Id-Version: Kratos\n"
|
"Project-Id-Version: Kratos\n"
|
||||||
"POT-Creation-Date: 2020-06-13 13:30+0800\n"
|
"POT-Creation-Date: 2020-06-21 11:42+0800\n"
|
||||||
"PO-Revision-Date: 2020-02-14 23:32+0800\n"
|
"PO-Revision-Date: 2020-02-14 23:32+0800\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
|
@ -837,6 +837,10 @@ msgstr ""
|
||||||
msgid "标题内容"
|
msgid "标题内容"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/theme-shortcode.php:183
|
||||||
|
msgid "温馨提示:此处内容已隐藏,<a href=\"#comments\">回复</a>后刷新页面即可查看!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: inc/theme-smtp.php:38
|
#: inc/theme-smtp.php:38
|
||||||
msgid "[通知]您的留言已经通过审核"
|
msgid "[通知]您的留言已经通过审核"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
Loading…
Reference in New Issue