Skip to content

Instantly share code, notes, and snippets.

View nezam05's full-sized avatar

Nezam uddin nezam05

View GitHub Profile
@nezam05
nezam05 / Oxy_condition_check_current_url.php
Created March 25, 2021 10:05
Oxygen Builder condition for checking current url
<?php
if (function_exists('oxygen_vsb_register_condition')) {
oxygen_vsb_register_condition('Current URL', array('options' => array(), 'custom' => true), array('==', '!='), 'url_check_callback', 'Post');
function url_check_callback($value, $operator)
{
global $wp;
$current_url = home_url($wp->request);
if ($operator == "==") {