LIQUID TOOLS – Custom Fields, CPT & Security

Beskrivelse

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

Skjermbilder

  • Custom Fields on Editor
  • Custom Post Types
  • Custom Taxonomies
  • Custom Fields
  • Security

Installasjon

  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

Ofte stilte spørsmål

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.

Vurderinger

Det er ingen omtaler av denne utvidelsen.

Bidragsytere og utviklere

«LIQUID TOOLS – Custom Fields, CPT & Security» er programvare med åpen kildekode. Følgende personer har bidratt til denne utvidelsen:

Bidragsytere

“LIQUID TOOLS – Custom Fields, CPT & Security” har blitt oversatt til 1 språk. Takk til oversetterne for deres bidrag.

Oversett “LIQUID TOOLS – Custom Fields, CPT & Security” til ditt språk.

Interessert i utvikling?

Bla gjennom koden, sjekk ut SVN-repositoriet, eller abonner på utviklingsloggen med RSS.

Endringslogg

1.1.0

  • Add Security features.

1.0.0

  • A first version.