Skip to content

Instantly share code, notes, and snippets.

@dlh01
Created February 1, 2023 03:37
Show Gist options
  • Save dlh01/7ecc938016dd36014abaa138ecb7662d to your computer and use it in GitHub Desktop.
Save dlh01/7ecc938016dd36014abaa138ecb7662d to your computer and use it in GitHub Desktop.
Find One example
<?php
$person = Alley\WP\find_one_post(
[
'meta_key' => 'twitter',
'meta_value' => '@potatomaster',
'post_type' => 'person',
]
); // ?WP_Post
$category = Alley\WP\find_one_term(
[
'slug' => 'potatomaster',
'taxonomy' => 'category',
]
); // ?WP_Term
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment