[WordPress] 外掛分享: LIQUID TOOLS – Custom Fields, CPT & Security

首頁外掛目錄 › LIQUID TOOLS – Custom Fields, CPT & Security
WordPress 外掛 LIQUID TOOLS – Custom Fields, CPT & Security 的封面圖片
100+
安裝啟用
尚無評分
9 天前
最後更新
問題解決
WordPress 6.0+ v1.1.4 上架:2024-10-28

內容簡介

LIQUID TOOLS 是一款簡單的 WordPress 外掛,讓使用者能夠管理自訂文章類型、自訂分類法和自訂欄位,同時提供必要的安全性加固功能,提升網站的靈活性與安全性。

【主要功能】
• 自訂文章類型:創建和管理獨特的自訂文章類型
• 自訂分類法:建立層級或非層級的分類法
• 自訂欄位:為文章添加多種自訂欄位
• 重複欄位:支持文本、圖片等類型的重複欄位
• 顯示選項:控制自訂欄位在編輯器中的顯示順序
• 安全性加固:提供登入頁面保護和維護模式

外掛標籤

開發者團隊

⬇ 下載最新版 (v1.1.4) 或搜尋安裝

① 下載 ZIP → 後台「外掛 › 安裝外掛 › 上傳外掛」
② 後台搜尋「LIQUID TOOLS – Custom Fields, CPT & Security」→ 直接安裝(推薦)
📦 歷史版本下載

原文外掛簡介

Manage custom post types, custom taxonomies, and custom fields plus essential security hardening in one simple WordPress plugin.
Features:
– Custom Post Types: Create and manage custom post types with unique slugs, menu icons, and capabilities.
– Custom Taxonomies: Create hierarchical or non-hierarchical taxonomies and link them to any post type.
– Custom Fields: Add custom fields to posts, including text fields, image uploads, URLs, and more.
– Repeating Fields: Supports repeating fields for text, images, and other field types.
– Flexible Display Options: Control the display order, position, and priority of custom fields in the post editor.
– Field Background Colors: Set background colors for custom fields to visually distinguish fields in the post editor.
– Security: Harden your site with login page protection, maintenance mode, and more.
– Thumbnail Support: Add thumbnails to the post admin list for selected post types.
Custom Fields

text
textarea
url
email
number
image
checkbox
radio
select

Custom Post Types

Capability
Archive
Hierarchical
Thumbnail
Revisions
Excerpt

Custom Taxonomies

Apply to Post Types
Hierarchical

Security

XML-RPC, X-Pingback
REST API
REST Route
Author Query
readme.html
Login history
Login Page Protection
Maintenance Mode
Password Protected
Maintenance Schedule (Pro)
Recurring Maintenance Schedule (Pro)

Others

Add thumbnails to the post admin list.
Add ID to the post admin list.
latest information on LIQUID PRESS.

How to get custom field data
LIQUID BLOCKS plugin for easy to get field data.
Custom field block allows you to output custom field data with no code.
Supports block editors and block themes.
Another way, Get field data securely using WordPress core functions.
Text field
get_post_meta( $post->ID, 'key', true );

Repeat text fields
$key = get_post_meta( $post->ID, 'key', true );
foreach ( $key as $value ) {
echo esc_html( $value );
}

Image field
wp_get_attachment_url( get_post_meta( $post->ID, 'key', true ) );

Repeat image fields
$key = get_post_meta( $post->ID, 'key', true );
foreach ( $key as $value ) {
echo wp_get_attachment_url( esc_html( $value ) );
}

延伸相關外掛

文章
Filter
Apply Filters
Mastodon