Support

Account

Home Forums Backend Issues (wp-admin) Get fields from page posts list Reply To: Get fields from page posts list

  • I’m trying to get the information from the fields shown in the print above, to display on the front end, these fields are configured for post list type.

    I use the ACF Extended plugin, when I register a custom post type, it saves the information with {name_cpt} _options, and then I can get the information from the fields and show it on the front end.

    so in this case I use

    get_field (‘my_field_name’, ‘{name_cpt}_options’);

    As this is the default wordpress post list page, I couldn’t find a way to get the information as in the example mentioned.

    get_field (‘my_field_name’, ‘name_of_option’);

    I’m looking to find out what the ‘name_of_option’ parameter would be