We're merging with GenerateBlocks! Learn more here.

[Support request] Feature Request: custom fields / meta

Please login to receive premium support.

Support for the free plugin can be found here.

Home Forums Pro Support Feature Request: custom fields / meta

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #33780
    Sebastian
    Participant

    It would be great to have the option to display the content of custom_fields in a card.

    get_post_meta($post->ID, '....', true);

    #33813
    elvin
    Moderator

    Hi Sebastian,

    That’s actually doable.

    You can put things into the cards through WPSP hooks.

    Here’s a list of hooks where you can put your custom field values in.
    https://wpshowposts.com/support/topic/bbpress-metadata-and-dates-in-wpshowposts/#post-28854

    But you have to manually code them. Example:

    add_action('wpsp_after_title',function(){
    echo get_field('your_custom_field',get_the_ID());
    });
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.