●エディター
Classic Editor

●複製プラグイン
Duplicate Post

●画像ファイル圧縮、遅延表示
EWWW Image Optimizer
設定:https://magara-style.com/ewww-settei-1118

●CSS、JavaScript圧縮
WP Fastest Cache
設定サイト:https://pasolack.com/wordpress/wp-fastest-cache/

●文字置き換えプラグイン
Search Regex
Better Search Replace
設定サイト:https://re-means.com/search-regex-how-to-globally-replace-the-image-url-to-https-from-http/

●PHPやテキストを繰り返し使えるショートコード
Post Snippets

●SSLをしてくれるプラグイン
Really Simple SSL

引っ越しプラグイン

設定サイト:https://pro.alcuesto.jp/all-in-one-wp-migration/

引っ越しは512MBまで容量を上げられる。専用のプラグインをインストする
all-in-one-wp-migration.6.68.zip

古いAll-in-One WP Migrationをインストールするので、プラグインの画面で「更新」しない。最新版になってしまって、上限があげられなくなる。

プラグインの中にあるAll-in-One WP Migrationフォルダconstants.phpの上限をあげてあげる。


// =================
// = Max File Size =
// =================
define( 'AI1WM_MAX_FILE_SIZE', 536870912 * 10 );

define( ‘AI1WM_MAX_FILE_SIZE’, 536870912 * 20 );
※これで10GB

constants.php

多言語プラグイン

https://www.itti.jp/web-design/choose-from-the-best-3-multilingual-plug-ins/

https://tcd-theme.com/2020/11/g-translate.html

タグを登録してくれる


//カスタム投稿タイプAddQuicktag設定
add_filter( 'addquicktag_post_types', 'my_addquicktag_post_types' );
function my_addquicktag_post_types( $post_types ) {
	$post_types[] = 'touroku';
	$post_types[] = 'mailform';
	return $post_types;
}

他のページを挿入するプラグイン

[insert page='staff' display='content']

insert page='staff' 表示させたいサイトのURL
display='content' 内容
display='title' 記事のタイトル

[insert page='ページID' display='content']

カスタムフィールドを拡張するプラグイン

使い方

スライドショープラグイン

使い方


◎テーマ編集などテンプレートのHTMLに直接書き込む場合はこちら
<?php echo do_shortcode("[metaslider id=30]"); ?>

◎ウィジェットや投稿記事に設定する場合はショートコードを利用します。
[metaslider id=30]

Thank you!  Word Press