Skip to content

Instantly share code, notes, and snippets.

View laxmariappan's full-sized avatar

Lax Mariappan laxmariappan

View GitHub Profile
@laxmariappan
laxmariappan / gist:537b2721d01f8dd4845af283d6357efb
Created September 26, 2023 15:05
common image and video file formats in a comma separated list
.jpg, .jpeg, .png, .gif, .bmp, .svg, .mp4, .avi, .mkv, .mov, .wmv, .flv, .mpeg, .3gp, .webm, .ogv
@laxmariappan
laxmariappan / wp-context-check.php
Created December 12, 2023 17:29
wp-context package example
<?php
use Inpsyde\WpContext;
// Instantiate the class
$context = WpContext::determine();
// Use the WpContext::is() method to check context
if (!$context->is(WpContext::FRONTOFFICE, WpContext::BACKOFFICE)) {
return false;
}