文件操作 - rank-math.php
返回文件管理
返回主菜单
删除本文件
文件: /storage/v12552/i2kplay/public_html/wp-content/plugins/redirection/models/importer/rank-math.php
编辑文件内容
<?php class Red_RankMath_Importer extends Red_Plugin_Importer { /** * Import redirects from RankMath. * * @param int $group_id Target group ID. * @return int Number of imported redirects. */ public function import_plugin( $group_id ) { global $wpdb; $count = 0; $redirects = $wpdb->get_results( "SELECT * FROM {$wpdb->prefix}rank_math_redirections" ); foreach ( $redirects as $redirect ) { $created = $this->create_for_item( $group_id, $redirect ); $count += $created; } return $count; } /** * Create one or more Redirection items for a RankMath row. * * @param int $group_id Target group ID. * @param stdClass $redirect Row from rank_math_redirections. * @return int Number of created redirects for this row. */ private function create_for_item( $group_id, $redirect ) { // phpcs:ignore $sources = unserialize( $redirect->sources ); $items = []; foreach ( $sources as $source ) { $url = $source['pattern']; if ( substr( $url, 0, 1 ) !== '/' ) { $url = '/' . $url; } $data = array( 'url' => $url, 'action_data' => array( 'url' => str_replace( '\\\\', '\\', $redirect->url_to ) ), 'regex' => $source['comparison'] === 'regex' ? true : false, 'group_id' => $group_id, 'match_type' => 'url', 'action_type' => 'url', 'action_code' => $redirect->header_code, ); $items[] = Red_Item::create( $data ); } return count( $items ); } /** * Get importer summary for RankMath. * * @return array{id: string, name: string, total: int}|false */ public function get_data() { global $wpdb; if ( defined( 'REDIRECTION_TESTS' ) && REDIRECTION_TESTS ) { return false; } if ( ! function_exists( 'is_plugin_active' ) ) { require_once ABSPATH . 'wp-admin/includes/plugin.php'; } $total = 0; if ( is_plugin_active( 'seo-by-rank-math/rank-math.php' ) ) { $total = $wpdb->get_var( "SELECT COUNT(*) FROM {$wpdb->prefix}rank_math_redirections" ); } if ( $total ) { return array( 'id' => 'rank-math', 'name' => 'RankMath', 'total' => intval( $total, 10 ), ); } return false; } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件