メインコンテンツへスキップツールバーへスキップ
WordPress について
CO-LINK（コーリンク）
ストアはまもなく公開予定です
22件の更新が利用できます
Ctrl+Kコマンドパレットを開く
00件のコメントが承認待ちです
新規
SEO22件の通知
WPCode
WP Mail SMTP !
UpdraftPlus
こんにちは、justitia さんjustitia
ヘルプ
プラグインを編集
Ultimate Member needs to create several pages (User Profiles, Account, Registration, Login, Password Reset, Logout, Member Directory) to function correctly.

Create Pages   結構です

この通知を非表示にする。
🚀 Royal MCP Pro を公開しました

制作会社規模の AI ツール。Divi Pro と Elementor Pro の詳細操作、WooCommerce の一括処理、取り消しトークン、統合監査ログ、プラグイン横断のワークフロー構成ツール。

Royal MCP Pro の詳細   閉じる

WP Mail SMTP: One or more emails recently failed to send. View details

Redirection セットアップ を行って、プラグインを有効化してください。
WooCommerce がインストールされているようですが、Wordfence Login Security の WooCommerce 連携が現在有効になっていません。この機能がないと、WooCommerce のフォームは、ログインページやユーザー登録用の CAPTCHA を含む、Wordfence Login Security が提供するすべての機能をサポートしません。 設定の管理

この通知を非表示にする。
この通知を非表示にする。
Elementor Pro でさらに多くのサイトを作成しましょう
Add the theme builder, popup builder, and 85+ advanced widgets to your Elementor Editor.

今すぐアップグレード
Advanced Custom Fields を編集中 (使用中)
ファイル: advanced-custom-fields/acf.php
編集するプラグインを選択: 
Advanced Custom Fields
 

プラグインファイル
acf.php
schemasフォルダー
includesフォルダー
composer.json
readme.txt
langフォルダー
srcフォルダー
README.md
assetsフォルダー
index.php
選択したファイルの内容:
1
<?php
2
/**
3
 * Advanced Custom Fields
4
 *
5
 * @package ACF
6
 * @author  WP Engine
7
 *
8
 * @wordpress-plugin
9
 * Plugin Name:       Advanced Custom Fields
10
 * Plugin URI:        https://www.advancedcustomfields.com
11
 * Description:       Customize WordPress with powerful, professional and intuitive fields.
12
 * Version:           6.8.8
13
 * Author:            WP Engine
14
 * Author URI:        https://wpengine.com/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields
15
 * Text Domain:       acf
16
 * Domain Path:       /lang
17
 * Requires PHP:      7.4
18
 * Requires at least: 6.2
19
 */
20
​
21
/**
22
 * @package ACF
23
 * @author  WP Engine
24
 *
25
 * © 2026 Advanced Custom Fields (ACF®). All rights reserved.
26
 * "ACF" is a trademark of WP Engine.
27
 * Licensed under the GNU General Public License v2 or later.
28
 * https://www.gnu.org/licenses/gpl-2.0.html
29
 */
30
​
31
if ( ! defined( 'ABSPATH' ) ) {
32
    exit; // Exit if accessed directly.
33
}
34
​
35
if ( ! class_exists( 'ACF' ) ) {
36
​
37
    /**
38
     * The main ACF class
39
     */
40
    class ACF {
41
​
42
        /**
43
         * The plugin version number.
44
         *
45
         * @var string
46
         */
47
        public $version = '6.8.8';
48
​
49
        /**
50
         * The plugin settings array.
51
         *
52
         * @var array
53
         */
54
        public $settings = array();
55
​
56
        /**
57
         * The plugin data array.
58
         *
59
         * @var array
60
         */
61
        public $data = array();
62
​
63
        /**
64
         * Storage for class instances.
65
         *
66
         * @var array
67
         */
68
        public $instances = array();
69
​
70
        /**
71
         * The loop instance.
72
         *
73
         * @var acf_loop
74
         */
75
        public $loop;
76
​
77
        /**
78
         * The revisions instance.
79
         *
80
         * @var acf_revisions
81
         */
82
        public $revisions;
83
​
84
        /**
85
         * The fields instance.
86
         *
87
         * @var acf_fields
88
         */
89
        public $fields;
90
​
91
        /**
92
         * The form front instance.
93
         *
解説: 
関数名…
 
警告: 使用中のプラグインへの変更は推奨されません。

 


WordPress のご利用ありがとうございます。バージョン 7.1
通知注意 ! WordPress ダッシュボードでプラグインを直接編集しているようです。プラグインを直接編集すると、互換性が失われてサイトが破損したり、将来の更新で変更が失われたりする可能性があるため、おすすめしません。 もしどうしても、このプラグインを直接編集する必要がある場合、新しい名前のコピーを作り、オリジナルを保存してください。そうすることで、何かがうまくいかない場合でも、動作可能なバージョンを再度有効化することができます。