• Resolved En18Zone

    (@en18zone)


    Hi

    How would i go about if i want to get all post meta for each event? One other thing when i want to get _event_start_time it comes in the format ex 13:20:00 but i will like it displayed just as inside the post. Thanks in advance

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter En18Zone

    (@en18zone)

    Subscribing for email notifications

    Hi,

    You should be able to use the standard WordPress get_post_meta function:
    https://codex.ww.wp.xz.cn/Custom_Fields

    Thread Starter En18Zone

    (@en18zone)

    Im trying to display the events through another plugin (forgive my layman language) using this code without the need to query individual metakeys but im not getting any luck.

    add_action( 'wpsp_before_content','wpsp_add_custom_meta' );
    function wpsp_add_custom_meta()
    {
        $meta = get_post_meta( get_the_ID(), '_your_custom_meta_key', true );
        if ( isset( $meta ) && '' !== $meta )
            echo $meta;
    }
Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Get all post meta’ is closed to new replies.