文件操作 - help.php
返回文件管理
返回主菜单
删除本文件
文件: /var/www/ltlcompare.com/wp-content/themes/ltl-compare/functions/help.php
编辑文件内容
<?php function ltl_compare_nl2tag( $tag, $string ) { return "<$tag>" . preg_replace( array( '/([\n]{1,})/i', '/([^>])\n([^<])/i' ), array( "</$tag>\n<$tag>", "$1<br>$2" ), trim( $string ) ) . "</$tag>"; } function ltl_compare_get_page_id_by_template( $template ) { $args = array( 'post_type' => 'page', 'fields' => 'ids', 'numberposts' => 1, 'meta_key' => '_wp_page_template', 'meta_value' => $template, ); $pages = get_posts( $args ); if ( $pages ) { return $pages[0]; } return 0; } function ltl_compare_force_404() { global $wp_query; $wp_query->set_404(); status_header( 404 ); get_template_part( 404 ); exit(); } function ltl_compare_get_btn_link( $link ) { $permalink = get_the_permalink( $link ); return $permalink ? $permalink : $link; } ?>
修改文件时间
将文件时间修改为当前时间的前一年
删除文件