plugin-icon

LIQUID TOOLS – Simple Custom Fields & Custom Post Types

제작자: lqd·
Very simple tool to set up Custom Fields, Custom Post Types, Custom Taxonomies.
버전
1.0.3
활성화된 설치 항목
80
최근 업데이트일
Nov 18, 2024
LIQUID TOOLS – Simple Custom Fields & Custom Post Types

LIQUID TOOLS is a simple plugin for WordPress that enables easy management of custom post types, taxonomies, and custom fields.

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. – 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

Others

Add thumbnails 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 ) ); }
무료Business 요금제에서
설치하면 WordPress.com 서비스 약관서드파티 플러그인 약관에 동의하게 됩니다.
테스트된 버전
WordPress 6.7.4
이 플러그인은 다운로드할 수 있으며 에서 사용할 수 있습니다.