• File: shortcode-functions.php
  • Full Path: /home/dealkatnwc/www/wp-content/plugins/userpro/functions/shortcode-functions.php
  • Date Modified: 02/11/2019 5:39 PM
  • File size: 302 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

	/* Convert all args to data */
	function userpro_args_to_data( $args ) {
		$res = null;
		foreach($args as $k => $v) {
			if ( $v == '' || empty($v) ) {
				$res .= " data-$k='0'";
			} else {
				$v = htmlentities($v, ENT_QUOTES, "UTF-8");
				$res .= " data-$k='$v'";
			}
		}
		echo $res;
	}