You appear to be a bot. Output may be restricted
Description
Build the privacy policy for the selected items
Note: since we set options to a null string when resetting them
Usage
oik_build_privacy_policy();
Parameters
Returns
void
Source
File name: oik-privacy-policy/admin/oik-privacy-policy.php
Lines:
1 to 12 of 12
function oik_build_privacy_policy() { $option = "bw_privacy_policy"; $options = bw_recreate_options( $option ); if ( $options !== FALSE && is_array( $options) && count( $options)) { foreach ( $options as $key => $value ) { if ( substr( $key, -1,3 ) != "_cb" ) { bw_build_content( $options, $key ); } } } }