• I have a couple of different custom fields. For example:

    • wp_set
    • wp_media
    • wp_video
    • images
    • dancing

    How can I show in posts only custom fields with prefix “wp_”?

Viewing 1 replies (of 1 total)
  • Just compare the first 3 string in the key, like

    if ( substr($key, 0, 3) == "wp_" ) {
         ... display content ...
    }
Viewing 1 replies (of 1 total)
  • The topic ‘show custom fields only with custom prefix’ is closed to new replies.