Add current class to post type navigation menu
The examples show posts (where the homepage is the blog list), but this works for any custom post type as well. I’ve used it forever; don’t [...]
CSS, Nav Menu, PHP | Type: PHP
Adding a Label to the Main Editor for Custom Post Types
When a CPT relies on a lot of custom fields via ACF, the unlabeled main editor can be confusing (“What’s this for?”). This code goes in [...]
ACF, CPT, Custom Admin, PHP | Type: PHP
Adding an edit tag in PHP conditional
Add [EDIT] in a PHP conditional, with style tags surrounding
PHP, WP/CP | Type: PHP
Common WP functions converted to variables
Sometimes functions are easier to use in conditional statements if converted to variables.
ACF, PHP, WP/CP | Type: PHP
Conditional Based on Field Value
Conditional based on values for single-value fields (radio buttons, select, etc).
ACF, PHP | Type: PHP
Date/Time Examples
$today = date('Ymd'); //string $testdate = get_field( 'test_date' ); //string $testerdate = DateTime::createFromFormat( 'Ymd', $testdate ); //convert string to object echo '<p>Today: '.$today.'</p> //string echo '<p>Test [...]
ACF, Date/Time, PHP | Type: PHP
Disable Gutenberg for selected Custom Post Types
function my_disable_gutenberg( $current_status, $post_type ) { // Disabled post types $disabled_post_types = array( 'book', 'movie' ); // Change $can_edit to false for any post types in [...]
CPT, PHP, WP/CP | Type: PHP
Display Dates if Start and End Dates Same Month
Handy snippet for displaying event dates when events can stretch over multiple days.
ACF, Date/Time, PHP | Type: PHP
Display Featured Image on Listing
How to add featured image to other post types. ADD TO THEME FUNCTIONS // This theme uses post thumbnails add_theme_support( 'post-thumbnails', array( 'plans','listings','news','post' ) ); ON [...]
Images, PHP, WP/CP | Type: PHP
Display the Title for the Posts / Blog Page
You can’t use the standard the_title(); template tag for the page name of the page that displays the blog listing (index.php); that tag will display the [...]
PHP, Template Tags, WP/CP | Type: PHP






