Untitled
Anonymous
plain_text
03/11/2022 5:25 PM
396 B
14
Indexable
function doo_compose_ad($id){
$rsp = '';
$add = get_option($id);
$adm = get_option($id.'_mobile');
if(wp_is_mobile() && $adm){
$rsp = do_shortcode(stripslashes($adm));
}else{
$rsp = do_shortcode(stripslashes($add));
}
// The Return
return $rsp;
}Editor is loading...