Explicit Fixed Width and Height

add_filter( 'the_content', 'add_image_dimensions' ); function add_image_dimensions( $content ) { preg_match_all( '/]+>/i', $content, $images); if (count($images) <…

<10

Defining Mailgun Mailer Constants

This snippet will prevent users from changing WP Mail SMTP settings in your WordPress admin area…

MemberPress: Display Account Tabs Anywhere

This code registers a new shortcode: [mepr-account-links]. This shortcode can be used anywhere to display the…

MemberPress: Disable Unauthorized Redirection on a Specific Page or Post

Adding this code snippet will prevent unauthorized users from being redirected away from the specific page…

Add Radio Boxes To Donation Form

/** * Add a collection of radio selections to the donation form. * * This snippet…

David Bisset PRO
<10

Footer menu

Footer menu with black background and white text

Automatically Close Campaign After Specific Amount of Seconds

The below code snippet closes your campaign after a specific amount of seconds have passed.

1 83 84 85 86 87 228