Plugin info

Total downloads: 1,088
Active installs: 70
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 2 language(s)
Contributors: 1
Last updated: 11/18/2024 (408 days ago)
Added to WordPress: 10/29/2024 (1 years old)
Minimum WordPress version: 6.0
Tested up to WordPress version: 6.7.4
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 408 days ago

26/100

Is LIQUID TOOLS – Simple Custom Fields & Custom Post Types abandoned?

Possibly abandoned (last update 408 days ago).

Compatibility

Requires WordPress: 6.0
Tested up to: 6.7.4
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

Meta Box
Rating 4.8/5 (161 reviews)Active installs 500,000
Pods – Custom Content Types and Fields
Rating 4.8/5 (414 reviews)Active installs 100,000
CubeWP – All-in-One Dynamic Content Framework
Rating 4.8/5 (12 reviews)Active installs 5,000
Custom post types, Custom Fields & more
Rating 4.6/5 (56 reviews)Active installs 3,000
MB ACF Migration
Rating 0.0/5 (0 reviews)Active installs 30
KickPress
Rating 0.0/5 (0 reviews)Active installs 10

Description

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 ) );
}

Installation

  1. Upload ‘liquid-tools’ to the ‘/wp-content/plugins/’ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Set ‘LIQUID TOOLS’ in the admin menu

Frequently Asked Questions

Q: Can I use this plugin with other custom post type plugins?

A: Yes, LIQUID TOOLS works independently and can be used alongside other plugins that manage custom post types.

Review feed

No reviews available

Screenshots

  1. Custom Fields on Editor

    Custom Fields on Editor

  2. Custom Post Types

    Custom Post Types

  3. Custom Taxonomies

    Custom Taxonomies

  4. Custom Fields

    Custom Fields

  5. Others

    Others

Changelog

1.0.0

  • A first version.