Skip to content

Instantly share code, notes, and snippets.

@taniarascia
taniarascia / functions.php
Last active February 13, 2024 07:51
Inlcuding custom fields and uploads in a WordPress post
<?php
function create_post_your_post() {
register_post_type( 'your_post',
array(
'labels' => array(
'name' => __( 'Your Post' ),
),
'public' => true,
'hierarchical' => true,