This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Show the input interfaces of the fields of a pod without forms tags and submit button like forms method | |
*/ | |
function pods_utils_show_pod_fields($pod, $selected_fields = null, $pod_id = null, $name_prefix = "", $theme_name = ""){ | |
$pods = pods( $pod ); | |
$fields = $pods->fields(); | |
foreach($fields as $field) { | |
if($selected_fields != null) | |
if(!in_array($field['name'], $selected_fields)) |