新增是否显示文章目录和复制链接的选项

This commit is contained in:
浪子 2024-05-22 11:29:22 +08:00
parent bdd3eeb511
commit 4907670357
1 changed files with 8 additions and 0 deletions

View File

@ -44,6 +44,14 @@ function themeConfig($form) {
array('0'=> _t('否'), '1'=> _t('是')), array('0'=> _t('否'), '1'=> _t('是')),
'0', _t('是否显示相关文章'), _t('选择“是”将在文章页面显示相关文章。')); '0', _t('是否显示相关文章'), _t('选择“是”将在文章页面显示相关文章。'));
$form->addInput($showrelated); $form->addInput($showrelated);
$showshare = new Typecho_Widget_Helper_Form_Element_Radio('showshare',
array('0'=> _t('否'), '1'=> _t('是')),
'0', _t('是否显示复制链接'), _t('选择“是”将在文章页面显示复制链接。'));
$form->addInput($showshare);
$showtoc = new Typecho_Widget_Helper_Form_Element_Radio('showtoc',
array('0'=> _t('否'), '1'=> _t('是')),
'0', _t('是否显示文章目录'), _t('选择“是”将在文章页面显示文章目录(仅在宽度大于1400px的设备中显示)。'));
$form->addInput($showtoc);
} }
function get_post_view($archive) { function get_post_view($archive) {
$cid = $archive->cid; $cid = $archive->cid;