文件操作 - functions.php
返回文件管理
返回主菜单
删除本文件
文件: /storage/v12552/i2kairpad/public_html/wp-content/plugins/luckywp-table-of-contents/functions.php
编辑文件内容
<?php use luckywp\tableOfContents\core\Core; use luckywp\tableOfContents\front\Toc; /** * @param array $items * @param bool $echo * @return string|null */ function lwptoc_items($items, $echo = true) { $html = ''; if ($items) { switch (Core::$plugin->settings->getListMarkupTags()) { case 'ul': $containerTag = 'ul'; $itemTag = 'li'; break; case 'ol': $containerTag = 'ol'; $itemTag = 'li'; break; case 'div': default: $containerTag = 'div'; $itemTag = 'div'; } Toc::$currentOutputDepth++; $html = Core::$plugin->front->render('items', [ 'items' => $items, 'depth' => Toc::$currentOutputDepth, 'containerTag' => $containerTag, 'itemTag' => $itemTag, ]); Toc::$currentOutputDepth--; } if ($echo) { echo $html; return null; } return $html; }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件