Snippets: PHP

RankMath Functions

Move RankMath metabox to bottom of the edit screen //change the metabox display location to bottom function rank_math_change_metabox_priority() { return 'low'; } add_filter( 'rank_math/metabox/priority', 'rank_math_change_metabox_priority' ); [...]
PHP, WP/CP | Type: PHP

Remove Items from WP/CP Admin Bar

// Remove items from the admin bar function remove_from_admin_bar($wp_admin_bar) { /* * Placing items in here will only remove them from admin bar * when viewing [...]
PHP, WP/CP | Type: PHP

Removing autop, and when you can’t remove it

The autop function can be very annoying when you’re trying to format content. But some plugins depend on autop to work, such as the checkout function [...]
eCommerce, PHP, WP/CP | Type: PHP

Rendering a Readable Date from Start Date

$mtgdate = DateTime::createFromFormat('Ymd', $startdate)->format('F j, Y'); echo '<p class="read-more"><a href="'.$formurl.'?mtgdate='.$mtgdate.'">'.$linktext.'</a></p>';
Date/Time, Forms, PHP | Type: PHP

Replace Deprecated Init create_function (php 7.2)

Several plugins still use the deprecated function. EXAMPLE (SSN) //deprecated version add_action('widgets_init', create_function('', 'return register_widget("SimpleSectionNav");')); //7.2 ready version function ssn_register_widget() { return register_widget("SimpleSectionNav"); } add_action( 'widgets_init', [...]
PHP, WP/CP | Type: PHP

Shim Plugin for ACF Pro with ClassicPress

The issue is with the last function in /plugins/advanced-custom-fields-pro/pro/blocks.php, which calls for functions ClassicPress does not have. I put this into an mu-plugin on my WebJournal, [...]
ACF, PHP, WP/CP | Type: PHP

Turn Start Date into Pretty Date

Once you've established a date, display it as you like (see catholic fdn single-events.php for complex usage)
ACF, PHP, WP/CP | Type: PHP