acf/fields/post_object/result

Last updated Feb 17, 2022

Description

Filters the text displayed for each post in the Post Object field.

Changelog

  • Added in version 4.1.2

Parameters

apply_filters( 'acf/fields/post_object/result', $text, $post, $field, $post_id );
  • $text (string) The text displayed for this post (the post title).
  • $post (WP_Post) The post object.
  • $field (array) The field array containing all settings.
  • $post_id (int|string) The current post ID being edited.

Modifers

This filter provides modifiers to target specific fields. The following filter names are available:

  • acf/fields/post_object/result Applies to all fields.
  • acf/fields/post_object/result/name={$name} Applies to all fields of a specific name.
  • acf/fields/post_object/result/key={$key} Applies to all fields of a specific key.

Example

This example demonstrates how to append the post type to each result.

functions.php

<?php
add_filter('acf/fields/post_object/result', 'my_acf_fields_post_object_result', 10, 4);
function my_acf_fields_post_object_result( $text, $post, $field, $post_id ) {
    $text .= ' (' . $post->post_type .  ')';
    return $text;
}
Supercharge Your Website With Premium Features Using ACF PRO

Speed up your workflow and unlock features to better develop websites using ACF Blocks and Options Pages, with the Flexible Content, Repeater, Clone, Gallery Fields & More.

Explore Features View Pricing

PRO Features
ACF Blocks
Options Pages
PRO Fields
Repeater
Flexible Content
Gallery
Clone