/** * Returns a Form instance * * @access public * * @param int|WP_Post $form_id. * * @return MC4WP_Form */ function mc4wp_get_form($form_id = 0) { return MC4WP_Form::get_instance($form_id); } /** * Get an array of Form instances * * @access public * * @param array $args Array of parameters * * @return MC4WP_Form[] */ function mc4wp_get_forms(array $args = []) { // parse function arguments $default_args = [ 'post_status' => 'publish', 'posts_per_page' => -1, 'ignore_sticky_posts' => true, 'no_found_rows' => true, ]; $args = array_merge($default_args, $args); // set post_type here so it can't be overwritten using function arguments $args['post_type'] = 'mc4wp-form'; $q = new WP_Query(); $posts = $q->query($args); $forms = []; foreach ($posts as $post) { try { $form = mc4wp_get_form($post); } catch (Exception $e) { continue; } $forms[] = $form; } return $forms; } /** * Echoes the given form * * @access public * * @param int $form_id * @param array $config * @param bool $echo * * @return string */ function mc4wp_show_form($form_id = 0, $config = [], $echo = true) { /** @var MC4WP_Form_Manager $forms */ $forms = mc4wp('forms'); return $forms->output_form($form_id, $config, $echo); } /** * Gets an instance of the submitted form, if any. * * @access public * * @return MC4WP_Form|null */ function mc4wp_get_submitted_form() { return mc4wp('forms')->get_submitted_form(); } Privacy And Policy - Prebusinessnews
Site icon Prebusinessnews

Privacy And Policy


Privacy Policy for Pre Business News

Last Updated: [Date]

Welcome to Pre Business News! This Privacy Policy outlines how we collect, use, and protect your personal information.

1. Information We Collect:

We may collect the following types of information:

a. Personal Information: We may collect your name, email address, and other contact details when you subscribe or register on our website.

b. Usage Data: We may automatically collect information about how you interact with our website, including your IP address, browser type, and pages visited.

2. How We Use Your Information:

We use the collected information for various purposes, including:

a. Providing and maintaining our services.

b. Personalizing your experience on our website.

c. Sending newsletters and updates if you opt to receive them.

3. Cookies and Tracking Technologies:

We use cookies and similar tracking technologies to enhance your experience on our website. You can manage your preferences for cookies through your browser settings.

4. Third-Party Services:

We may use third-party services for analytics, advertising, or other purposes. These services may collect information about your use of our website.

5. Data Security:

We take reasonable measures to protect your personal information. However, no method of transmission over the internet or electronic storage is completely secure.

6. Your Rights:

You have the right to access, correct, or delete your personal information. Contact us at [contact@email.com] to exercise these rights.

7. Changes to This Privacy Policy:

We may update our Privacy Policy from time to time. Any changes will be posted on this page.

8. Contact Us:

If you have any questions or concerns about our Privacy Policy, please contact us at [prebusinessnews@email.com].

Thank you for trusting Pre Business News with your information.


Remember to replace “[Date]” and “[contact@email.com]” with your actual details. Additionally, consider seeking legal advice to ensure compliance with relevant laws and regulations.

Exit mobile version