When Update then Slack

// Notify Slack when a plugin, theme, or WordPress core is updated add_action(‘upgrader_process_complete’, ‘notify_slack_updates_v2’, 10, 2); function notify_slack_updates_v2($upgrader_object, $options) { $slackURL = “https://hooks.slack.com/services/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”; // Replace with your Slack Webhook URL $site_name = get_bloginfo(‘name’); // Plugin Updates if ($options[‘type’] === ‘plugin’…Continue reading

URL and Review Links

// Display Official Website URL if available. if (get_field(‘official_website_url’)) { echo ‘Official Website: ‘; the_field(‘visible_website_url’); echo ‘‘; } // Display TripAdvisor Reviews link if available. if (get_field(‘trip_advisor_url’)) { echo ‘Read TripAdvisor Reviews‘; } // Display Yelp Reviews link if available.…Continue reading