I hereby claim:
- I am celltowertrees on github.
- I am celltowertrees (https://keybase.io/celltowertrees) on keybase.
- I have a public key ASDmbNkfHatb2OX1Cj_RZ66Ye--0AMz7iqrGDT9qeUvPxQo
To claim this, I am signing this object:
import type { Config } from "tailwindcss"; | |
export default { | |
content: [ | |
"./pages/**/*.{js,ts,jsx,tsx,mdx}", | |
"./components/**/*.{js,ts,jsx,tsx,mdx}", | |
"./app/**/*.{js,ts,jsx,tsx,mdx}", | |
], | |
theme: { | |
extend: { |
I hereby claim:
To claim this, I am signing this object:
$child_posts = types_child_posts('artist'); | |
foreach ($child_posts as $child_post) { | |
$album_id = wpcf_pr_post_get_belongs($child_post->ID, 'album'); | |
$album = get_post($album_id); | |
echo $album->post_title; | |
} |
<?php | |
$parent_id = wpcf_pr_post_get_belongs(get_the_ID(), 'parent-type-slug'); | |
if (!empty($parent_id)) { | |
$parent = get_post($parent_id); | |
var_dump($parent); | |
} | |
?> |