[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fuEJnLAqeHcWqBBX62jq6upokDzyd9K7VQbRgUVE80yc":3,"$fPJ_H8154SyreP6GEYT3h4OM2XGe3lsyTmwZraFlPSIw":327,"$fcIq19r43iPlzxJNqnFodeSklGFq_zEP6ID2nJB44yWY":332},{"slug":4,"name":5,"version":6,"author":7,"author_profile":8,"description":9,"short_description":10,"active_installs":11,"downloaded":12,"rating":13,"num_ratings":14,"last_updated":15,"tested_up_to":16,"requires_at_least":17,"requires_php":18,"tags":19,"homepage":25,"download_link":26,"security_score":27,"vuln_count":14,"unpatched_count":28,"last_vuln_date":29,"fetched_at":30,"discovery_status":31,"vulnerabilities":32,"developer":88,"crawl_stats":38,"alternatives":96,"analysis":208,"fingerprints":310},"get-custom-field-values","Get Custom Field Values","4.1","Scott Reilly","https:\u002F\u002Fprofiles.wordpress.org\u002Fcoffee2code\u002F","\u003Cp>This plugin provides a powerful widget, shortcode (with shortcode builder tool), and template tags for easily retrieving and displaying custom field values for posts or pages.\u003C\u002Fp>\n\u003Cp>The power of custom fields gives this plugin the potential to be dozens of plugins all rolled into one.\u003C\u002Fp>\n\u003Cp>This plugin allows you to harness the power of custom fields\u002Fmeta data. Use the “Get Custom Field” widget, the \u003Ccode>[custom_field]\u003C\u002Fcode> shortcode (which has a post editor sidebar widget to help you build the shortcode), or one of six template tags to retrieve and display custom fields. Find a custom field for the current post, a specified post, a recent post, or randomly. And for the custom field values found by the plugin, you may optionally specify text or HTML to appear before and after the results. If nothing is found, then nothing is display (unless you define text to appear when no results are found). If multiple results are found, only the first will be displayed unless you specify a string to be used to join the results together (such as “,”), in which case all will be returned. Visit the Examples section to see how this plugin can be cast in dozens of different ways.\u003C\u002Fp>\n\u003Cp>There are six template tags provided by this plugin. Here they are, with an explanation of when they are appropriate for use:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ccode>c2c_get_custom()\u003C\u002Fcode> : Use this inside “the loop” to retrieve a custom field value for a post\u003C\u002Fli>\n\u003Cli>\u003Ccode>c2c_get_current_custom()\u003C\u002Fcode> : This is only available on the permalink post template (single.php) and page template (page.php). Can be used inside or outside “the loop”. Useful for using custom field to define text you want to include on a post or page’s header, footer, or sidebar.\u003C\u002Fli>\n\u003Cli>\u003Ccode>c2c_get_post_custom()\u003C\u002Fcode> : Useful when you know the ID of the post whose custom field value you want.\u003C\u002Fli>\n\u003Cli>\u003Ccode>c2c_get_random_custom()\u003C\u002Fcode> : Retrieve the value of a random instance of the specified custom field key, as long as the field is associated with a published posted, non-passworded post (you can modify a setting in the plugin file to search passworded posts as well).\u003C\u002Fli>\n\u003Cli>\u003Ccode>c2c_get_random_post_custom()\u003C\u002Fcode> : Retrieves the value of random custom field(s) from a post when you know the ID of the post you’re interested in.\u003C\u002Fli>\n\u003Cli>\u003Ccode>c2c_get_recent_custom()\u003C\u002Fcode> : Retrieves the most recent (according to the associated post’s publish date) value of the specified custom field.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>You can filter the custom field values that the plugin would display. Add filters for ‘\u003Ccode>the_meta\u003C\u002Fcode>‘ to filter custom field data (see the end of the code file for commented out samples you may wish to include). You can also add per-meta filters by hooking ‘\u003Ccode>the_meta_$sanitized_field\u003C\u002Fcode>‘. \u003Ccode>$sanitized_field\u003C\u002Fcode> is a clean version of the value of \u003Ccode>$field\u003C\u002Fcode> where everything but alphanumeric and underscore characters have been removed. So to filter the value of the “Related Posts” custom field, you would need to add a filter for ‘\u003Ccode>the_meta_RelatedPosts\u003C\u002Fcode>‘.\u003C\u002Fp>\n\u003Cp>Links: \u003Ca href=\"https:\u002F\u002Fcoffee2code.com\u002Fwp-plugins\u002Fget-custom-field-values\u002F\" rel=\"nofollow ugc\">Plugin Homepage\u003C\u002Fa> | \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fget-custom-field-values\u002F\" rel=\"ugc\">Plugin Directory Page\u003C\u002Fa> | \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fcoffee2code\u002Fget-custom-field-values\u002F\" rel=\"nofollow ugc\">GitHub\u003C\u002Fa> | \u003Ca href=\"https:\u002F\u002Fcoffee2code.com\" rel=\"nofollow ugc\">Author Homepage\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch3>Developer Documentation\u003C\u002Fh3>\n\u003Cp>Developer documentation can be found in \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fcoffee2code\u002Fget-custom-field-values\u002Fblob\u002Fmaster\u002FDEVELOPER-DOCS.md\" rel=\"nofollow ugc\">DEVELOPER-DOCS.md\u003C\u002Fa>. That documentation covers the numerous template tags, hooks, and shortcode provided by the plugin.\u003C\u002Fp>\n\u003Cp>As an overview, these are the template tags provided the plugin:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ccode>c2c_get_custom()\u003C\u002Fcode>             : Template tag for use inside “the loop” and applies to the currently listed post.\u003C\u002Fli>\n\u003Cli>\u003Ccode>c2c_get_current_custom()\u003C\u002Fcode>     : Template tag for use on permalink (aka single) page templates for posts and pages.\u003C\u002Fli>\n\u003Cli>\u003Ccode>c2c_get_post_custom()\u003C\u002Fcode>        : Template tag for use when you know the ID of the post you’re interested in.\u003C\u002Fli>\n\u003Cli>\u003Ccode>c2c_get_random_custom()\u003C\u002Fcode>      : Template tag for use to retrieve a random custom field value.\u003C\u002Fli>\n\u003Cli>\u003Ccode>c2c_get_random_post_custom()\u003C\u002Fcode> : Template tag for use to retrieve random custom field value(s) from a post when you know the ID of the post you’re interested in.\u003C\u002Fli>\n\u003Cli>\u003Ccode>c2c_get_recent_custom()\u003C\u002Fcode>      : Template tag for use outside “the loop” and applies for custom fields regardless of post.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>These are the hooks provided by the plugin:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ccode>c2c_get_custom_field_values_shortcode\u003C\u002Fcode>  : Filter to customize the name of the plugin’s shortcode.\u003C\u002Fli>\n\u003Cli>\u003Ccode>c2c_get_custom_field_values_post_types\u003C\u002Fcode> : Filter to customize the post types that should support the shortcode builder metabox.\u003C\u002Fli>\n\u003Cli>\u003Ccode>get_custom_field_values\u002Fcan_author_use_shortcodes\u003C\u002Fcode> : Filter to customize if post author can make use of the ‘custom_field’ shortcode.\u003C\u002Fli>\n\u003Cli>\u003Ccode>get_custom_field_values\u002Fshow_metabox\u003C\u002Fcode>   : Filter to customize if the shortcode builder metabox is shown.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>The shortcode provided is \u003Ccode>[custom-field]\u003C\u002Fcode>, which has a number of attributes to customize its behavior and output.\u003C\u002Fp>\n","Use widgets, shortcodes, and\u002For template tags to easily retrieve and display custom field values for posts or pages.",1000,132290,100,4,"2023-10-10T04:37:00.000Z","6.3.8","3.6","",[20,21,22,23,24],"custom-fields","meta","shortcode","widget","widgets","https:\u002F\u002Fcoffee2code.com\u002Fwp-plugins\u002Fget-custom-field-values\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fget-custom-field-values.4.1.zip",84,0,"2023-10-11 00:00:00","2026-04-16T10:56:18.058Z","no_bundle",[33,50,63,75],{"id":34,"url_slug":35,"title":36,"description":37,"plugin_slug":4,"theme_slug":38,"affected_versions":39,"patched_in_version":6,"severity":40,"cvss_score":41,"cvss_vector":42,"vuln_type":43,"published_date":29,"updated_date":44,"references":45,"days_to_patch":47,"patch_diff_files":48,"patch_trac_url":38,"research_status":38,"research_verified":49,"research_rounds_completed":28,"research_plan":38,"research_summary":38,"research_vulnerable_code":38,"research_fix_diff":38,"research_exploit_outline":38,"research_model_used":38,"research_started_at":38,"research_completed_at":38,"research_error":38,"poc_status":38,"poc_video_id":38,"poc_summary":38,"poc_steps":38,"poc_tested_at":38,"poc_wp_version":38,"poc_php_version":38,"poc_playwright_script":38,"poc_exploit_code":38,"poc_has_trace":49,"poc_model_used":38,"poc_verification_depth":38},"CVE-2023-45604","get-custom-field-values-authenticated-administrator-stored-cross-site-scripting-via-plugin-widget","Get Custom Field Values \u003C= 4.0.1 - Authenticated (Administrator+) Stored Cross-Site Scripting via plugin widget","The Get Custom Field Values plugin for WordPress is vulnerable to Stored Cross-Site Scripting via the plugin widget in versions up to, and including, 4.0.1 due to insufficient input sanitization and output escaping. This makes it possible for authenticated attackers, with administrator-level access and above, to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page. This only impacts multi-site installations and installations where unfiltered_html has been disabled.",null,"\u003C=4.0.1","medium",5.5,"CVSS:3.1\u002FAV:N\u002FAC:L\u002FPR:H\u002FUI:N\u002FS:C\u002FC:L\u002FI:L\u002FA:N","Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')","2024-01-22 19:56:02",[46],"https:\u002F\u002Fwww.wordfence.com\u002Fthreat-intel\u002Fvulnerabilities\u002Fid\u002F1e0fd85a-2164-4b83-822e-845662591a78?source=api-prod",104,[],false,{"id":51,"url_slug":52,"title":53,"description":54,"plugin_slug":4,"theme_slug":38,"affected_versions":55,"patched_in_version":6,"severity":40,"cvss_score":56,"cvss_vector":57,"vuln_type":43,"published_date":58,"updated_date":44,"references":59,"days_to_patch":61,"patch_diff_files":62,"patch_trac_url":38,"research_status":38,"research_verified":49,"research_rounds_completed":28,"research_plan":38,"research_summary":38,"research_vulnerable_code":38,"research_fix_diff":38,"research_exploit_outline":38,"research_model_used":38,"research_started_at":38,"research_completed_at":38,"research_error":38,"poc_status":38,"poc_video_id":38,"poc_summary":38,"poc_steps":38,"poc_tested_at":38,"poc_wp_version":38,"poc_php_version":38,"poc_playwright_script":38,"poc_exploit_code":38,"poc_has_trace":49,"poc_model_used":38,"poc_verification_depth":38},"WF-66e55302-f889-4054-817f-aadbdd3c88de-get-custom-field-values","get-custom-field-values-authenticatedcontributor-stored-cross-site-scripting-via-custom-meta-widget","Get Custom Field Values \u003C= 4.0.1 - Authenticated(Contributor+) Stored Cross-Site Scripting via Custom Meta Widget","The Get Custom Field Values plugin for WordPress is vulnerable to Stored Cross-Site Scripting via Custom Meta fields in versions up to, and including, 4.0.1 due to insufficient input sanitization and output escaping on user supplied attributes. This makes it possible for authenticated attackers with contributor-level and above permissions to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page.","\u003C4.1",6.4,"CVSS:3.1\u002FAV:N\u002FAC:L\u002FPR:L\u002FUI:N\u002FS:C\u002FC:L\u002FI:L\u002FA:N","2023-10-10 00:00:00",[60],"https:\u002F\u002Fwww.wordfence.com\u002Fthreat-intel\u002Fvulnerabilities\u002Fid\u002F66e55302-f889-4054-817f-aadbdd3c88de?source=api-prod",105,[],{"id":64,"url_slug":65,"title":66,"description":67,"plugin_slug":4,"theme_slug":38,"affected_versions":68,"patched_in_version":69,"severity":40,"cvss_score":56,"cvss_vector":57,"vuln_type":43,"published_date":70,"updated_date":44,"references":71,"days_to_patch":73,"patch_diff_files":74,"patch_trac_url":38,"research_status":38,"research_verified":49,"research_rounds_completed":28,"research_plan":38,"research_summary":38,"research_vulnerable_code":38,"research_fix_diff":38,"research_exploit_outline":38,"research_model_used":38,"research_started_at":38,"research_completed_at":38,"research_error":38,"poc_status":38,"poc_video_id":38,"poc_summary":38,"poc_steps":38,"poc_tested_at":38,"poc_wp_version":38,"poc_php_version":38,"poc_playwright_script":38,"poc_exploit_code":38,"poc_has_trace":49,"poc_model_used":38,"poc_verification_depth":38},"CVE-2021-24871","get-custom-field-values-contributor-stored-cross-site-scripting","Get Custom Field Values \u003C= 4.0.0 - Contributor+ Stored Cross-Site Scripting","The Get Custom Field Values WordPress plugin before 4.0.1 does not escape custom fields before outputting them in the page, which could allow users with a role as low as contributor to perform Cross-Site Scripting attacks","\u003C4.0.1","4.0.1","2021-11-09 00:00:00",[72],"https:\u002F\u002Fwww.wordfence.com\u002Fthreat-intel\u002Fvulnerabilities\u002Fid\u002F8d52779e-3c86-4823-af0e-6f8d55d35e90?source=api-prod",805,[],{"id":76,"url_slug":77,"title":78,"description":79,"plugin_slug":4,"theme_slug":38,"affected_versions":80,"patched_in_version":81,"severity":40,"cvss_score":82,"cvss_vector":83,"vuln_type":84,"published_date":70,"updated_date":44,"references":85,"days_to_patch":73,"patch_diff_files":87,"patch_trac_url":38,"research_status":38,"research_verified":49,"research_rounds_completed":28,"research_plan":38,"research_summary":38,"research_vulnerable_code":38,"research_fix_diff":38,"research_exploit_outline":38,"research_model_used":38,"research_started_at":38,"research_completed_at":38,"research_error":38,"poc_status":38,"poc_video_id":38,"poc_summary":38,"poc_steps":38,"poc_tested_at":38,"poc_wp_version":38,"poc_php_version":38,"poc_playwright_script":38,"poc_exploit_code":38,"poc_has_trace":49,"poc_model_used":38,"poc_verification_depth":38},"CVE-2021-24872","get-custom-field-values-arbitrary-post-metadata-access","Get Custom Field Values \u003C 4.0 - Arbitrary Post Metadata Access","The Get Custom Field Values WordPress plugin before 4.0 allows users with a role as low as Contributor to access other posts metadata without validating the permissions. Eg. contributors can access admin posts metadata.","\u003C4.0","4.0",6.5,"CVSS:3.1\u002FAV:N\u002FAC:L\u002FPR:L\u002FUI:N\u002FS:U\u002FC:H\u002FI:N\u002FA:N","Missing Authorization",[86],"https:\u002F\u002Fwww.wordfence.com\u002Fthreat-intel\u002Fvulnerabilities\u002Fid\u002F8ff1ca68-7c71-4442-b27f-12743fc39b37?source=api-prod",[],{"slug":89,"display_name":7,"profile_url":8,"plugin_count":90,"total_installs":91,"avg_security_score":92,"avg_patch_time_days":93,"trust_score":94,"computed_at":95},"coffee2code",63,91830,88,374,71,"2026-05-19T23:10:48.298Z",[97,122,147,166,186],{"slug":98,"name":99,"version":100,"author":101,"author_profile":102,"description":103,"short_description":104,"active_installs":105,"downloaded":106,"rating":107,"num_ratings":108,"last_updated":109,"tested_up_to":110,"requires_at_least":111,"requires_php":112,"tags":113,"homepage":117,"download_link":118,"security_score":119,"vuln_count":120,"unpatched_count":28,"last_vuln_date":121,"fetched_at":30},"ocean-extra","Ocean Extra","2.5.5","oceanwp","https:\u002F\u002Fprofiles.wordpress.org\u002Foceanwp\u002F","\u003Cp>Ocean Extra adds extra features and flexibility to the \u003Ca href=\"https:\u002F\u002Foceanwp.org\u002F\" rel=\"nofollow ugc\">OceanWP\u003C\u002Fa> theme for a turbocharged experience.\u003C\u002Fp>\n\u003Cp>Build any type of a professional looking website without any coding knowledge and by controlling every aspect of it with ease. With Ocean Extra you’re in command and have full authority over available features and options.\u003C\u002Fp>\n\u003Cp>👉 \u003Ca href=\"https:\u002F\u002Foceanwp.org\u002Fcore-extensions-bundle\u002F\" rel=\"nofollow ugc\">Ocean Core Extensions Bundle\u003C\u002Fa>\u003Cbr \u002F>\n👉 \u003Ca href=\"https:\u002F\u002Foceanwp.org\u002Fdemos\u002F\" rel=\"nofollow ugc\">Ocean Full Website Templates\u003C\u002Fa>\u003Cbr \u002F>\n📘 \u003Ca href=\"https:\u002F\u002Fdocs.oceanwp.org\u002F\" rel=\"nofollow ugc\">Documentation\u003C\u002Fa>\u003Cbr \u002F>\n🎬 \u003Ca href=\"https:\u002F\u002Fwww.youtube.com\u002F@OceanWP\" rel=\"nofollow ugc\">Video Tutorials\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>💙 Join the \u003Ca href=\"https:\u002F\u002Fwww.facebook.com\u002Fgroups\u002Foceanwptheme\" rel=\"nofollow ugc\">official OceanWP Facebook community\u003C\u002Fa> and always be up to speed with the latest news.\u003C\u002Fp>\n\u003Cp>Check out the video when Ocean Extra’s Theme Panel received a makeover to become OceanWP Panel and an overview of its capabilities \u003Cspan class=\"embed-youtube\" style=\"text-align:center; display: block;\">\u003Ciframe loading=\"lazy\" class=\"youtube-player\" width=\"750\" height=\"422\" src=\"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FtwUc0rHnBo0?version=3&rel=1&showsearch=0&showinfo=1&iv_load_policy=1&fs=1&hl=en-US&autohide=2&wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox\">\u003C\u002Fiframe>\u003C\u002Fspan>\u003C\u002Fp>\n\u003Cp>Ocean Extra is a 100% free WordPress plugin that enriches your website building experience by adding extra features to the OceanWP free theme. Save time and effort, and reduce the need for additional plugins or custom codes.\u003C\u002Fp>\n\u003Cp>Everyone deserves a polished website with expert features, and so do you.\u003C\u002Fp>\n\u003Cp>🔥 \u003Ca href=\"https:\u002F\u002Foceanwp.org\u002Fcore-extensions-bundle\u002F\" rel=\"nofollow ugc\">Check out the Premium Features\u003C\u002Fa> for additional power, energy and ability.\u003C\u002Fp>\n\u003Ch3>Copyright\u003C\u002Fh3>\n\u003Cp>Ocean Extra, Copyright 2016-2025 OceanWP LLC\u003Cbr \u002F>\nOcean Extra is distributed under the terms of the GNU GPL.\u003C\u002Fp>\n\u003Cp>Ocean Extra uses the following third-party resources:\u003C\u002Fp>\n\u003Cp>Font Awesome Fonts, Copyright Fonticons, Inc.\u003Cbr \u002F>\nLicense: SIL OFL 1.1 License – https:\u002F\u002Fscripts.sil.org\u002FOFL\u003Cbr \u002F>\nSource: https:\u002F\u002Ffontawesome.com\u002F\u003C\u002Fp>\n\u003Cp>Font Awesome Icons, Copyright Fonticons, Inc.\u003Cbr \u002F>\nLicense: CC BY 4.0 License – https:\u002F\u002Fcreativecommons.org\u002Flicenses\u002Fby\u002F4.0\u002F\u003Cbr \u002F>\nSource: https:\u002F\u002Ffontawesome.com\u002F\u003C\u002Fp>\n\u003Cp>Font Awesome Code, Copyright Fonticons, Inc.\u003Cbr \u002F>\nLicense: MIT License – https:\u002F\u002Fopensource.org\u002Flicenses\u002FMIT\u003Cbr \u002F>\nSource: https:\u002F\u002Ffontawesome.com\u002F\u003C\u002Fp>\n\u003Ch3>Features\u003C\u002Fh3>\n\u003Cp>Features listed below are just a fraction of the most significant Ocean Extra possibilities:\u003Cbr \u002F>\n* Host Google fonts locally\u003Cbr \u002F>\n* Adobe Fonts integration\u003Cbr \u002F>\n* Custom templates support\u003Cbr \u002F>\n* Individual page \u002F post control\u003Cbr \u002F>\n* Freemium website templates import\u003Cbr \u002F>\n* WordPress widgets\u003Cbr \u002F>\n* Mega Menu\u003Cbr \u002F>\n* Menu icons\u003Cbr \u002F>\n* Various shortcodes\u003Cbr \u002F>\n* Customizer sections control\u003Cbr \u002F>\n* Customizer search\u003Cbr \u002F>\n* Customizer reset\u003Cbr \u002F>\n* Customizer styling import \u002F export\u003Cbr \u002F>\n* Integration\u003Cbr \u002F>\n* Extra settings\u003Cbr \u002F>\n* Admin settings\u003Cbr \u002F>\n* Website preloader\u003Cbr \u002F>\n* Premium licenses panel & more\u003C\u002Fp>\n\u003Ch4>HOST GOOGLE FONTS LOCALLY\u003C\u002Fh4>\n\u003Cp>1-click solution, no font upload required. (Any Google font you apply from the Customizer)[https:\u002F\u002Fdocs.oceanwp.org\u002Farticle\u002F808-host-google-fonts-locally] will load from your site automatically, making your website faster and GDPR friendly in an instant. This feature also supports the Elementor page builder and Google fonts applied through it.\u003C\u002Fp>\n\u003Ch4>ADOBE FONTS INTEGRATION\u003C\u002Fh4>\n\u003Cp>Add Adobe Fonts (Typekit) to your OceanWP theme. The (integration supports Adobe fonts usage)[https:\u002F\u002Fdocs.oceanwp.org\u002Farticle\u002F849-how-to-add-adobe-fonts-typekit] with the OceanWP theme and plugins (Customizer), as well as Elementor.\u003C\u002Fp>\n\u003Ch4>CUSTOM TEMPLATES SUPPORT\u003C\u002Fh4>\n\u003Cp>Create as many templates as you like, using any page builder you want, including Gutenberg. Create and apply a custom header or footer directly through the Customizer. Display custom templates using shortcodes, hooks or even custom codes.\u003C\u002Fp>\n\u003Ch4>INDIVIDUAL PAGE \u002F POST CONTROL\u003C\u002Fh4>\n\u003Cp>This feature is enabled through the metabox settings and gives you full control over every page or post on your website independantly from your global Customizer settings. For example, you can apply a different page layout or a custom sidebar; you can enable or disable the Header, Top Bar, Page Title, Footer Widgets, Footer Copyright. You can apply a different navigation menu, header style, page title style, play with colors, custom titles, apply templates through shortcodes and much, much, much more.\u003C\u002Fp>\n\u003Ch4>FREEMIUM WEBSITE TEMPLATES\u003C\u002Fh4>\n\u003Cp>Don’t feel like starting a website from scratch? Import one of the freemium full website templates and edit content and styling as you go. Depending on the template type, each contains sample pages, sample posts and Customizer styling. Website templates are also known as demos or site kits.\u003C\u002Fp>\n\u003Ch4>WORDPRESS WIDGETS\u003C\u002Fh4>\n\u003Cp>Enrich your widget areas such as sidebars or footer with additional widgets like: About Me, Contact Info, Recent Posts (with thumbnails), Custom Menu, Social Icons, Social Share and more.\u003C\u002Fp>\n\u003Ch4>MEGA MENU\u003C\u002Fh4>\n\u003Cp>Turn your website navigation into a mega menu with a simple setup directly through the WordPress Menus option.\u003C\u002Fp>\n\u003Ch4>MENU ICONS\u003C\u002Fh4>\n\u003Cp>Add icons to some or all of your menu items. Several icon libraries are supported, like Font Awesome, Simple Line Icons, Dashicons and more.\u003C\u002Fp>\n\u003Ch4>VARIOUS SHORTCODES\u003C\u002Fh4>\n\u003Cp>Use \u003Ca href=\"https:\u002F\u002Fdocs.oceanwp.org\u002Fcategory\u002F369-shortcodes\" rel=\"nofollow ugc\">OceanWP shortcodes\u003C\u002Fa> to display dynamic content on your website, such as: current year, current user, login \u002F logout link, breadcrumbs, WooCommerce cart and more.\u003C\u002Fp>\n\u003Ch4>CUSTOMIZER SECTIONS CONTROL\u003C\u002Fh4>\n\u003Cp>Disable any of the Customizer panels from loading, to increase the Customizer loading time or focus on your tasks. This feature allows you to disable only those panels created by the OceanWP theme or any of the Ocean plugins. Likewise, you can enable all panels back again.\u003C\u002Fp>\n\u003Ch4>CUSTOMIZER SEARCH\u003C\u002Fh4>\n\u003Cp>The search option within the Customizer helps you find all relevant settings instantly. Enable or disable per need.\u003C\u002Fp>\n\u003Ch4>CUSTOMIZER RESET\u003C\u002Fh4>\n\u003Cp>Unhappy with your Customizer settings and styling? Or you would like to import different styling? Reset all current settings to OceanWP’s default values and apply your design.\u003C\u002Fp>\n\u003Ch4>CUSTOMIZER STYLING IMPORT \u002F EXPORT\u003C\u002Fh4>\n\u003Cp>Export your Customizer styling options to use on other sites, to save as backup or simply speed up the design process. Likewise, import an existing Customizer styling file and apply all settings in a breeze.\u003C\u002Fp>\n\u003Ch4>INTEGRATION\u003C\u002Fh4>\n\u003Cp>The Integration panel helps you enable SVG file upload support for the WordPress Media Library, connect with MailChimp, Google reCaptcha, Google Maps and more.\u003C\u002Fp>\n\u003Ch4>EXTRA SETTINGS\u003C\u002Fh4>\n\u003Cp>The Extra Settings panel allows you to disable or enable Ocean Extra plugin components, like the meta box, custom templates support, widgets, etc.\u003C\u002Fp>\n\u003Ch4>ADMIN SETTINGS\u003C\u002Fh4>\n\u003Cp>The Admin Settings panel offers control over additional features, like regenerating the local Google fonts CSS file, disabling the “edit” link on post archive pages which is visible to admins, and more.\u003C\u002Fp>\n\u003Ch4>WEBSITE PRELOADER\u003C\u002Fh4>\n\u003Cp>Dealing with heavy page content such as videos or slow hosting? Enable the (website preloader feature)[https:\u002F\u002Fdocs.oceanwp.org\u002Farticle\u002F851-oceanwp-website-preloader] on your website to reduce bounce rate, entertain visitors, brand site or more.\u003C\u002Fp>\n\u003Ch4>PREMIUM OCEAN FEATURES\u003C\u002Fh4>\n\u003Cp>Some of the most outsanding premium features controled by the Ocean Extra’s OceanWP Panel include:\u003Cbr \u002F>\n* Ocean Images: Import royalty free images and icons directly to your Media Library, a feature that is included in the Ocean Core Extensions Bundle and the Ocean Pro Demos plugin.\u003Cbr \u002F>\n* Full Website Templates: Import any of the 220+ full website templates (demos, site kits) to kick start your website fast.\u003Cbr \u002F>\n* Elementor Widgets: Disable or enable any of the widgets that come with the Ocean Elementor Widgets plugin.\u003Cbr \u002F>\n* Elementor Library: Control the settings of the Elementor Sections Library, that counts over 60 various designs. Create your page content as you. This feature is included in the Ocean Core Extensions Bundle and the Ocean Pro Demos plugin.\u003Cbr \u002F>\n* Gutenberg Blocks: Disable or enable any of the blocks that come with the Ocean Gutenberg Blocks plugin.\u003Cbr \u002F>\n* White Label: Whitelabel your OceanWP theme, personalize it and make it your own, with the Ocean White Label plugin.\u003C\u002Fp>\n","The ultimate companion for OceanWP. Adds local Google Fonts, mega menus, site templates, and per-page settings for total design authority.",500000,26830052,66,67,"2026-03-31T08:15:00.000Z","6.9.4","5.6","7.4",[114,115,116,101,24],"meta-box","metabox","metaboxes","https:\u002F\u002Foceanwp.org\u002Fextension\u002Focean-extra\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Focean-extra.2.5.5.zip",89,18,"2026-04-07 00:00:00",{"slug":123,"name":124,"version":125,"author":126,"author_profile":127,"description":128,"short_description":129,"active_installs":130,"downloaded":131,"rating":13,"num_ratings":132,"last_updated":133,"tested_up_to":134,"requires_at_least":135,"requires_php":136,"tags":137,"homepage":142,"download_link":143,"security_score":144,"vuln_count":145,"unpatched_count":28,"last_vuln_date":146,"fetched_at":30},"apollo13-framework-extensions","Apollo13 Framework Extensions","1.9.9","apollo13themes","https:\u002F\u002Fprofiles.wordpress.org\u002Fapollo13themes\u002F","\u003Cp>\u003Cstrong>Apollo13 Framework Extensions\u003C\u002Fstrong> adds few features to themes build on Apollo13 Framework. These are:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Designs Importer,\u003C\u002Fli>\n\u003Cli>shortcodes based on Apollo13 Framework features: writtng effect, count down, socials, scroller, slider, galleries, post grid,\u003C\u002Fli>\n\u003Cli>support for WPBakery Page Builder elements added by Apollo13 Framework,\u003C\u002Fli>\n\u003Cli>custom post types: albums, works & people,\u003C\u002Fli>\n\u003Cli>Export\u002FImport of theme options,\u003C\u002Fli>\n\u003Cli>Custom Sidebar,\u003C\u002Fli>\n\u003Cli>Custom CSS,\u003C\u002Fli>\n\u003Cli>Meta options that are creating content for posts, pages, albums and works,\u003C\u002Fli>\n\u003Cli>Responsive Image resizing ,\u003C\u002Fli>\n\u003Cli>Maintenance mode.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>This plugin requires one of themes build on \u003Cstrong>Apollo13 Framework\u003C\u002Fstrong> theme to be installed.\u003C\u002Fp>\n\u003Cp>It is mostly used for:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fapollo13themes.com\u002Frife\u002Ffree\u002F\" rel=\"nofollow ugc\">Rife Free\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fapollo13themes.com\u002Frife\u002F\" rel=\"nofollow ugc\">Rife Pro\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Credits & Copyright\u003C\u002Fh3>\n\u003Ch4>Anime.js, Copyright 2019 Julian Garnier\u003C\u002Fh4>\n\u003Cp>Licenses: MIT\u003Cbr \u002F>\nSource: https:\u002F\u002Fanimejs.com\u002F\u003C\u002Fp>\n","Adds custom post types, shortcodes and some features that are used in themes built on Apollo13 Framework.",20000,536744,1,"2025-12-04T08:12:00.000Z","6.5.8","4.7","5.4.0",[138,139,140,141],"custom-post-types","elementor-widgets","shortcodes","wpbakery-page-builder-support","https:\u002F\u002Fapollo13themes.com\u002Frife\u002Ffree","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fapollo13-framework-extensions.zip",95,6,"2026-02-18 15:32:44",{"slug":148,"name":149,"version":150,"author":151,"author_profile":152,"description":153,"short_description":154,"active_installs":155,"downloaded":156,"rating":13,"num_ratings":14,"last_updated":157,"tested_up_to":134,"requires_at_least":158,"requires_php":159,"tags":160,"homepage":162,"download_link":163,"security_score":119,"vuln_count":164,"unpatched_count":28,"last_vuln_date":165,"fetched_at":30},"weaverx-theme-support","Weaver Xtreme Theme Support","6.5.1","wpweaver","https:\u002F\u002Fprofiles.wordpress.org\u002Fwpweaver\u002F","\u003Cp>This is the theme support for the Weaver Xtreme Theme. This plugin provides a collection of useful shortcodes and widgets designed to complement the Weaver Xtreme theme. These shortcodes have been selected and developed based on requests and feedback from thousands of users of the Weaver Xtreme and previous versions of Weaver.\u003C\u002Fp>\n\u003Cp>This plugin also provides the Legacy Weaver Xtreme Admin Dashboard interface. The Legacy Admin is an old style interface alternative to the Customizer interface. The Legacy Interface has been updated for compatibility with Weaver Xtreme Version 5, and will automatically update and convert .wxt settings files from Weaver Xtreme 4.\u003C\u002Fp>\n\u003Cp>Includes complete documentation help file. Instructions for using the shortcodes and widgets are in the help file.\u003C\u002Fp>\n\u003Ch4>Shortcodes included\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>\u003Cstrong>[tab_group]\u003C\u002Fstrong> – Display content in a tabbed box.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>\u003C!--YouTube Error: bad URL entered-->\u003C\u002Fstrong> – Show your YouTube videos responsively, and with the capability to use any of the YouTube custom display options.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>\u003C!-- vimeo error: not a vimeo video -->\u003C\u002Fstrong> –  Show your Vimeo videos responsively, and with the capability to use any of the Vimeo custom display options.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[iframe]\u003C\u002Fstrong> – Quick and easy display of content in an iframe.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[div]\u003C\u002Fstrong>, \u003Cstrong>[span]\u003C\u002Fstrong>, \u003Cstrong>[html]\u003C\u002Fstrong> – Add div, span, and other html to pages\u002Fposts without the need to switch to Text view.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[hide\u002Fshow_if]\u003C\u002Fstrong> – Show or hide content depending upon options: device, page ID, user capability, logged in status.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[bloginfo]\u003C\u002Fstrong> – Display any information available from WordPress bloginfo function.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[user_can]\u003C\u002Fstrong> – Display content base on logged-in user role.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[site_title]\u003C\u002Fstrong> – Display Site title.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>[site_tagline]\u003C\u002Fstrong> – Display Site tag line.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Widgets Included\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>\u003Cstrong>Weaver 2 Column Text Widget\u003C\u002Fstrong> – Add text into two columns in a widget\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Weaver Per Page Text Widget\u003C\u002Fstrong> – Add a text widget on a per-page basis\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Weaver Login\u003C\u002Fstrong> – Simplified login widget\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Licenses\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>The Weaver Xtreme Theme Support plugin is licensed under the terms of the GNU GENERAL PUBLIC LICENSE, Version 2,\u003Cbr \u002F>\nJune 1991. (GPL) The full text of the license is in the license.txt file.\u003C\u002Fli>\n\u003Cli>All images included with this plugin are either original works of the author which\u003Cbr \u002F>\nhave been placed into the public domain, or have been derived from other public domain sources,\u003Cbr \u002F>\nand thus need no license. (This does not include the images provided with any of the\u003Cbr \u002F>\nbelow listed scripts and libraries. Those images are covered by their respective licenses.)\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>This plugin also includes several scripts and libraries that are covered under the terms\u003Cbr \u002F>\nof their own licenses in the listed files in the plugin distribution:\u003C\u002Fp>\n","A useful shortcode and widget collection for Weaver Xtreme",9000,383370,"2024-05-31T18:31:00.000Z","6.0","7.2",[140,161,24],"weaver-xtreme-theme","http:\u002F\u002Fweavertheme.com\u002Fplugins","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fweaverx-theme-support.6.5.1.zip",3,"2024-06-04 19:18:53",{"slug":167,"name":168,"version":169,"author":170,"author_profile":171,"description":172,"short_description":173,"active_installs":174,"downloaded":175,"rating":13,"num_ratings":132,"last_updated":176,"tested_up_to":110,"requires_at_least":177,"requires_php":111,"tags":178,"homepage":182,"download_link":183,"security_score":184,"vuln_count":164,"unpatched_count":132,"last_vuln_date":185,"fetched_at":30},"popularis-extra","Popularis Extra","1.2.10","Themes4WP","https:\u002F\u002Fprofiles.wordpress.org\u002Fthemes4wp\u002F","\u003Cp>Popularis Extra gives you access to demo import for free PopularisWP themes, extra features like widgets, shortcodes or additional Elementor widgets.\u003C\u002Fp>\n\u003Cp>This plugin requires PopularisWP theme to be installed.\u003C\u002Fp>\n\u003Ch3>Supported Themes\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fthemes\u002Fpopularis\u002F\" rel=\"ugc\">Popularis\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fpopulariswp.com\u002Fpopularis-ecommerce\u002F\" rel=\"nofollow ugc\">Popularis eCommerce\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fthemes\u002Fpopularis-verse\u002F\" rel=\"ugc\">Popularis Verse\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fthemes\u002Fpopularis-hub\u002F\" rel=\"ugc\">Popularis Hub\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fthemes\u002Fpopularis-star\u002F\" rel=\"ugc\">Popularis Star\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fthemes\u002Fpopularis-writer\u002F\" rel=\"ugc\">Popularis Writer\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fthemes\u002Fpopularis-press\u002F\" rel=\"ugc\">Popularis Press\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fpopulariswp.com\u002Fpopularis-fashion\u002F\" rel=\"nofollow ugc\">Popularis Fashion\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fpopulariswp.com\u002Fpopularis-business\u002F\" rel=\"nofollow ugc\">Popularis Business\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n","Popularis Extra add extra features to Popularis theme like demo import, widgets, shortcodes or Elementor widgets.",8000,226297,"2025-12-03T07:12:00.000Z","4.4",[179,180,181,140,24],"demo","elementor","import","https:\u002F\u002Fpopulariswp.com\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fpopularis-extra.1.2.10.zip",74,"2026-01-28 00:00:00",{"slug":187,"name":188,"version":189,"author":190,"author_profile":191,"description":192,"short_description":193,"active_installs":194,"downloaded":195,"rating":196,"num_ratings":197,"last_updated":198,"tested_up_to":199,"requires_at_least":200,"requires_php":18,"tags":201,"homepage":205,"download_link":206,"security_score":207,"vuln_count":28,"unpatched_count":28,"last_vuln_date":38,"fetched_at":30},"disable-author-pages","Disable Author Pages","0.11","Frank Neumann-Staude","https:\u002F\u002Fprofiles.wordpress.org\u002Ffstaude\u002F","\u003Cp>Disable the author pages ( \u002Fauthor=? ) in wordpress and redirect the user to another page.\u003C\u002Fp>\n","Disable the author pages",6000,50772,98,17,"2017-11-28T17:13:00.000Z","4.7.33","3.0",[202,203,22,204,24],"page","post","sidebar","https:\u002F\u002Fstaude.net\u002Fwordpress\u002Fplugins\u002Fdisable-author-pages\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fdisable-author-pages.0.11.zip",85,{"attackSurface":209,"codeSignals":250,"taintFlows":291,"riskAssessment":292,"analyzedAt":309},{"hooks":210,"ajaxHandlers":246,"restRoutes":247,"shortcodes":248,"cronEvents":249,"entryPointCount":28,"unprotectedCount":28},[211,217,223,225,229,233,236,241],{"type":212,"name":213,"callback":214,"file":215,"line":216},"filter","the_meta","do_shortcode","get-custom-field-values.php",338,{"type":218,"name":219,"callback":220,"file":221,"line":222},"action","load-post.php","register_post_page_hooks","get-custom.shortcode.php",62,{"type":218,"name":224,"callback":220,"file":221,"line":90},"load-post-new.php",{"type":212,"name":226,"callback":226,"priority":227,"file":221,"line":228},"default_hidden_meta_boxes",10,64,{"type":218,"name":230,"callback":231,"file":221,"line":232},"admin_print_footer_scripts","admin_js",73,{"type":218,"name":234,"callback":235,"priority":227,"file":221,"line":184},"do_meta_boxes","do_meta_box",{"type":218,"name":237,"callback":238,"priority":239,"file":221,"line":240},"init","register",11,355,{"type":218,"name":242,"callback":243,"file":244,"line":245},"widgets_init","register_widget","get-custom.widget.php",255,[],[],[],[],{"dangerousFunctions":251,"sqlUsage":252,"outputEscaping":255,"fileOperations":28,"externalRequests":28,"nonceChecks":28,"capabilityChecks":28,"bundledLibraries":290},[],{"prepared":253,"raw":28,"locations":254},8,[],{"escaped":120,"rawEcho":256,"locations":257},15,[258,262,264,266,268,270,272,274,276,278,280,282,284,286,288],{"file":259,"line":260,"context":261},"c2c-widget.php",163,"raw output",{"file":259,"line":263,"context":261},165,{"file":259,"line":265,"context":261},167,{"file":259,"line":267,"context":261},168,{"file":259,"line":269,"context":261},213,{"file":259,"line":271,"context":261},214,{"file":259,"line":273,"context":261},273,{"file":259,"line":275,"context":261},276,{"file":259,"line":277,"context":261},278,{"file":259,"line":279,"context":261},285,{"file":259,"line":281,"context":261},288,{"file":259,"line":283,"context":261},293,{"file":259,"line":285,"context":261},303,{"file":259,"line":287,"context":261},306,{"file":221,"line":289,"context":261},287,[],[],{"summary":293,"deductions":294},"The static analysis of 'get-custom-field-values' v4.1 reveals an excellent technical security posture in its current implementation. The absence of any identified AJAX handlers, REST API routes, shortcodes, or cron events with unprotected entry points significantly reduces the plugin's attack surface. Furthermore, the code exhibits strong security practices by exclusively using prepared statements for all SQL queries and having no identified dangerous functions or file operations. The lack of external HTTP requests and the absence of taint analysis findings further contribute to this positive assessment.\n\nHowever, despite the clean state of the current version's code, the plugin's vulnerability history presents a significant concern. With four known medium-severity vulnerabilities, including Cross-Site Scripting and Missing Authorization, and a recent vulnerability in October 2023, this indicates a pattern of past security flaws. While these may be patched in the current version, the history suggests a potential for recurring vulnerabilities or areas that require ongoing vigilance. The complete absence of nonce and capability checks in the static analysis, while not directly exploitable due to the lack of exposed entry points, is a weakness that could become a risk if the plugin's functionality were to expand or change.\n\nIn conclusion, 'get-custom-field-values' v4.1 demonstrates strong adherence to secure coding practices regarding its current codebase, with minimal direct security risks detectable through static analysis. The plugin's strength lies in its limited and well-protected entry points. The primary weakness stems from its past vulnerability record, which necessitates cautiousness and thorough testing. The lack of explicit capability and nonce checks, while not an immediate threat in this version, is an area for potential future risk if the plugin's architecture evolves.",[295,298,300,303,305,307],{"reason":296,"points":297},"Missing Nonce Checks",5,{"reason":299,"points":297},"Missing Capability Checks",{"reason":301,"points":302},"Vulnerability History (4 Medium CVEs)",16,{"reason":304,"points":14},"Past Vulnerability Type: XSS",{"reason":306,"points":14},"Past Vulnerability Type: Missing Authorization",{"reason":308,"points":297},"Output Escaping (55% proper)","2026-03-16T18:48:25.669Z",{"wat":311,"direct":320},{"assetPaths":312,"generatorPatterns":315,"scriptPaths":316,"versionParams":317},[313,314],"\u002Fwp-content\u002Fplugins\u002Fget-custom-field-values\u002Fget-custom.css","\u002Fwp-content\u002Fplugins\u002Fget-custom-field-values\u002Fget-custom.js",[],[314],[318,319],"get-custom-field-values\u002Fget-custom.css?ver=","get-custom-field-values\u002Fget-custom.js?ver=",{"cssClasses":321,"htmlComments":322,"htmlAttributes":323,"restEndpoints":324,"jsGlobals":325,"shortcodeOutput":326},[],[],[],[],[],[],{"error":328,"url":329,"statusCode":330,"statusMessage":331,"message":331},true,"http:\u002F\u002Flocalhost\u002Fapi\u002Fplugins\u002Fget-custom-field-values\u002Fbundle",404,"no bundle for this plugin yet",{"slug":4,"current_version":6,"total_versions":333,"versions":334},21,[335,340,348,357,368,379,390,401,412,423,434,445,455,466,477,488,499,510,521,531,542],{"version":6,"download_url":26,"svn_tag_url":336,"released_at":38,"has_diff":49,"diff_files_changed":337,"diff_lines":38,"trac_diff_url":338,"vulnerabilities":339,"is_current":328},"https:\u002F\u002Fplugins.svn.wordpress.org\u002Fget-custom-field-values\u002Ftags\u002F4.1\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fget-custom-field-values%2Ftags%2F4.0.1&new_path=%2Fget-custom-field-values%2Ftags%2F4.1",[],{"version":69,"download_url":341,"svn_tag_url":342,"released_at":38,"has_diff":49,"diff_files_changed":343,"diff_lines":38,"trac_diff_url":344,"vulnerabilities":345,"is_current":49},"https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fget-custom-field-values.4.0.1.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fget-custom-field-values\u002Ftags\u002F4.0.1\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fget-custom-field-values%2Ftags%2F4.0&new_path=%2Fget-custom-field-values%2Ftags%2F4.0.1",[346,347],{"id":34,"url_slug":35,"title":36,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":6},{"id":51,"url_slug":52,"title":53,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":6},{"version":81,"download_url":349,"svn_tag_url":350,"released_at":38,"has_diff":49,"diff_files_changed":351,"diff_lines":38,"trac_diff_url":352,"vulnerabilities":353,"is_current":49},"https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fget-custom-field-values.4.0.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fget-custom-field-values\u002Ftags\u002F4.0\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fget-custom-field-values%2Ftags%2F3.9.4&new_path=%2Fget-custom-field-values%2Ftags%2F4.0",[354,355,356],{"id":34,"url_slug":35,"title":36,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":6},{"id":51,"url_slug":52,"title":53,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":6},{"id":64,"url_slug":65,"title":66,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":69},{"version":358,"download_url":359,"svn_tag_url":360,"released_at":38,"has_diff":49,"diff_files_changed":361,"diff_lines":38,"trac_diff_url":362,"vulnerabilities":363,"is_current":49},"3.9.4","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fget-custom-field-values.3.9.4.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fget-custom-field-values\u002Ftags\u002F3.9.4\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fget-custom-field-values%2Ftags%2F3.9.3&new_path=%2Fget-custom-field-values%2Ftags%2F3.9.4",[364,365,366,367],{"id":34,"url_slug":35,"title":36,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":6},{"id":51,"url_slug":52,"title":53,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":6},{"id":64,"url_slug":65,"title":66,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":69},{"id":76,"url_slug":77,"title":78,"severity":40,"cvss_score":82,"vuln_type":84,"patched_in_version":81},{"version":369,"download_url":370,"svn_tag_url":371,"released_at":38,"has_diff":49,"diff_files_changed":372,"diff_lines":38,"trac_diff_url":373,"vulnerabilities":374,"is_current":49},"3.9.3","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fget-custom-field-values.3.9.3.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fget-custom-field-values\u002Ftags\u002F3.9.3\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fget-custom-field-values%2Ftags%2F3.9.2&new_path=%2Fget-custom-field-values%2Ftags%2F3.9.3",[375,376,377,378],{"id":34,"url_slug":35,"title":36,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":6},{"id":51,"url_slug":52,"title":53,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":6},{"id":64,"url_slug":65,"title":66,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":69},{"id":76,"url_slug":77,"title":78,"severity":40,"cvss_score":82,"vuln_type":84,"patched_in_version":81},{"version":380,"download_url":381,"svn_tag_url":382,"released_at":38,"has_diff":49,"diff_files_changed":383,"diff_lines":38,"trac_diff_url":384,"vulnerabilities":385,"is_current":49},"3.9.2","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fget-custom-field-values.3.9.2.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fget-custom-field-values\u002Ftags\u002F3.9.2\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fget-custom-field-values%2Ftags%2F3.9.1&new_path=%2Fget-custom-field-values%2Ftags%2F3.9.2",[386,387,388,389],{"id":34,"url_slug":35,"title":36,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":6},{"id":51,"url_slug":52,"title":53,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":6},{"id":64,"url_slug":65,"title":66,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":69},{"id":76,"url_slug":77,"title":78,"severity":40,"cvss_score":82,"vuln_type":84,"patched_in_version":81},{"version":391,"download_url":392,"svn_tag_url":393,"released_at":38,"has_diff":49,"diff_files_changed":394,"diff_lines":38,"trac_diff_url":395,"vulnerabilities":396,"is_current":49},"3.9.1","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fget-custom-field-values.3.9.1.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fget-custom-field-values\u002Ftags\u002F3.9.1\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fget-custom-field-values%2Ftags%2F3.9&new_path=%2Fget-custom-field-values%2Ftags%2F3.9.1",[397,398,399,400],{"id":34,"url_slug":35,"title":36,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":6},{"id":51,"url_slug":52,"title":53,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":6},{"id":64,"url_slug":65,"title":66,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":69},{"id":76,"url_slug":77,"title":78,"severity":40,"cvss_score":82,"vuln_type":84,"patched_in_version":81},{"version":402,"download_url":403,"svn_tag_url":404,"released_at":38,"has_diff":49,"diff_files_changed":405,"diff_lines":38,"trac_diff_url":406,"vulnerabilities":407,"is_current":49},"3.9","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fget-custom-field-values.3.9.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fget-custom-field-values\u002Ftags\u002F3.9\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fget-custom-field-values%2Ftags%2F3.8&new_path=%2Fget-custom-field-values%2Ftags%2F3.9",[408,409,410,411],{"id":34,"url_slug":35,"title":36,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":6},{"id":51,"url_slug":52,"title":53,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":6},{"id":64,"url_slug":65,"title":66,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":69},{"id":76,"url_slug":77,"title":78,"severity":40,"cvss_score":82,"vuln_type":84,"patched_in_version":81},{"version":413,"download_url":414,"svn_tag_url":415,"released_at":38,"has_diff":49,"diff_files_changed":416,"diff_lines":38,"trac_diff_url":417,"vulnerabilities":418,"is_current":49},"3.8","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fget-custom-field-values.3.8.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fget-custom-field-values\u002Ftags\u002F3.8\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fget-custom-field-values%2Ftags%2F3.7&new_path=%2Fget-custom-field-values%2Ftags%2F3.8",[419,420,421,422],{"id":34,"url_slug":35,"title":36,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":6},{"id":51,"url_slug":52,"title":53,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":6},{"id":64,"url_slug":65,"title":66,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":69},{"id":76,"url_slug":77,"title":78,"severity":40,"cvss_score":82,"vuln_type":84,"patched_in_version":81},{"version":424,"download_url":425,"svn_tag_url":426,"released_at":38,"has_diff":49,"diff_files_changed":427,"diff_lines":38,"trac_diff_url":428,"vulnerabilities":429,"is_current":49},"3.7","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fget-custom-field-values.3.7.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fget-custom-field-values\u002Ftags\u002F3.7\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fget-custom-field-values%2Ftags%2F3.6.1&new_path=%2Fget-custom-field-values%2Ftags%2F3.7",[430,431,432,433],{"id":34,"url_slug":35,"title":36,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":6},{"id":51,"url_slug":52,"title":53,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":6},{"id":64,"url_slug":65,"title":66,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":69},{"id":76,"url_slug":77,"title":78,"severity":40,"cvss_score":82,"vuln_type":84,"patched_in_version":81},{"version":435,"download_url":436,"svn_tag_url":437,"released_at":38,"has_diff":49,"diff_files_changed":438,"diff_lines":38,"trac_diff_url":439,"vulnerabilities":440,"is_current":49},"3.6.1","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fget-custom-field-values.3.6.1.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fget-custom-field-values\u002Ftags\u002F3.6.1\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fget-custom-field-values%2Ftags%2F3.6&new_path=%2Fget-custom-field-values%2Ftags%2F3.6.1",[441,442,443,444],{"id":34,"url_slug":35,"title":36,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":6},{"id":51,"url_slug":52,"title":53,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":6},{"id":64,"url_slug":65,"title":66,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":69},{"id":76,"url_slug":77,"title":78,"severity":40,"cvss_score":82,"vuln_type":84,"patched_in_version":81},{"version":17,"download_url":446,"svn_tag_url":447,"released_at":38,"has_diff":49,"diff_files_changed":448,"diff_lines":38,"trac_diff_url":449,"vulnerabilities":450,"is_current":49},"https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fget-custom-field-values.3.6.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fget-custom-field-values\u002Ftags\u002F3.6\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fget-custom-field-values%2Ftags%2F3.5&new_path=%2Fget-custom-field-values%2Ftags%2F3.6",[451,452,453,454],{"id":34,"url_slug":35,"title":36,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":6},{"id":51,"url_slug":52,"title":53,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":6},{"id":64,"url_slug":65,"title":66,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":69},{"id":76,"url_slug":77,"title":78,"severity":40,"cvss_score":82,"vuln_type":84,"patched_in_version":81},{"version":456,"download_url":457,"svn_tag_url":458,"released_at":38,"has_diff":49,"diff_files_changed":459,"diff_lines":38,"trac_diff_url":460,"vulnerabilities":461,"is_current":49},"3.5","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fget-custom-field-values.3.5.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fget-custom-field-values\u002Ftags\u002F3.5\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fget-custom-field-values%2Ftags%2F3.3.2&new_path=%2Fget-custom-field-values%2Ftags%2F3.5",[462,463,464,465],{"id":34,"url_slug":35,"title":36,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":6},{"id":51,"url_slug":52,"title":53,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":6},{"id":64,"url_slug":65,"title":66,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":69},{"id":76,"url_slug":77,"title":78,"severity":40,"cvss_score":82,"vuln_type":84,"patched_in_version":81},{"version":467,"download_url":468,"svn_tag_url":469,"released_at":38,"has_diff":49,"diff_files_changed":470,"diff_lines":38,"trac_diff_url":471,"vulnerabilities":472,"is_current":49},"3.3.2","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fget-custom-field-values.3.3.2.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fget-custom-field-values\u002Ftags\u002F3.3.2\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fget-custom-field-values%2Ftags%2F3.3.1&new_path=%2Fget-custom-field-values%2Ftags%2F3.3.2",[473,474,475,476],{"id":34,"url_slug":35,"title":36,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":6},{"id":51,"url_slug":52,"title":53,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":6},{"id":64,"url_slug":65,"title":66,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":69},{"id":76,"url_slug":77,"title":78,"severity":40,"cvss_score":82,"vuln_type":84,"patched_in_version":81},{"version":478,"download_url":479,"svn_tag_url":480,"released_at":38,"has_diff":49,"diff_files_changed":481,"diff_lines":38,"trac_diff_url":482,"vulnerabilities":483,"is_current":49},"3.3.1","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fget-custom-field-values.3.3.1.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fget-custom-field-values\u002Ftags\u002F3.3.1\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fget-custom-field-values%2Ftags%2F3.3&new_path=%2Fget-custom-field-values%2Ftags%2F3.3.1",[484,485,486,487],{"id":34,"url_slug":35,"title":36,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":6},{"id":51,"url_slug":52,"title":53,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":6},{"id":64,"url_slug":65,"title":66,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":69},{"id":76,"url_slug":77,"title":78,"severity":40,"cvss_score":82,"vuln_type":84,"patched_in_version":81},{"version":489,"download_url":490,"svn_tag_url":491,"released_at":38,"has_diff":49,"diff_files_changed":492,"diff_lines":38,"trac_diff_url":493,"vulnerabilities":494,"is_current":49},"3.3","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fget-custom-field-values.3.3.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fget-custom-field-values\u002Ftags\u002F3.3\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fget-custom-field-values%2Ftags%2F3.2&new_path=%2Fget-custom-field-values%2Ftags%2F3.3",[495,496,497,498],{"id":34,"url_slug":35,"title":36,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":6},{"id":51,"url_slug":52,"title":53,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":6},{"id":64,"url_slug":65,"title":66,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":69},{"id":76,"url_slug":77,"title":78,"severity":40,"cvss_score":82,"vuln_type":84,"patched_in_version":81},{"version":500,"download_url":501,"svn_tag_url":502,"released_at":38,"has_diff":49,"diff_files_changed":503,"diff_lines":38,"trac_diff_url":504,"vulnerabilities":505,"is_current":49},"3.2","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fget-custom-field-values.3.2.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fget-custom-field-values\u002Ftags\u002F3.2\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fget-custom-field-values%2Ftags%2F3.0.1&new_path=%2Fget-custom-field-values%2Ftags%2F3.2",[506,507,508,509],{"id":34,"url_slug":35,"title":36,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":6},{"id":51,"url_slug":52,"title":53,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":6},{"id":64,"url_slug":65,"title":66,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":69},{"id":76,"url_slug":77,"title":78,"severity":40,"cvss_score":82,"vuln_type":84,"patched_in_version":81},{"version":511,"download_url":512,"svn_tag_url":513,"released_at":38,"has_diff":49,"diff_files_changed":514,"diff_lines":38,"trac_diff_url":515,"vulnerabilities":516,"is_current":49},"3.0.1","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fget-custom-field-values.3.0.1.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fget-custom-field-values\u002Ftags\u002F3.0.1\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fget-custom-field-values%2Ftags%2F3.0&new_path=%2Fget-custom-field-values%2Ftags%2F3.0.1",[517,518,519,520],{"id":34,"url_slug":35,"title":36,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":6},{"id":51,"url_slug":52,"title":53,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":6},{"id":64,"url_slug":65,"title":66,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":69},{"id":76,"url_slug":77,"title":78,"severity":40,"cvss_score":82,"vuln_type":84,"patched_in_version":81},{"version":200,"download_url":522,"svn_tag_url":523,"released_at":38,"has_diff":49,"diff_files_changed":524,"diff_lines":38,"trac_diff_url":525,"vulnerabilities":526,"is_current":49},"https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fget-custom-field-values.3.0.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fget-custom-field-values\u002Ftags\u002F3.0\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fget-custom-field-values%2Ftags%2F2.5&new_path=%2Fget-custom-field-values%2Ftags%2F3.0",[527,528,529,530],{"id":34,"url_slug":35,"title":36,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":6},{"id":51,"url_slug":52,"title":53,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":6},{"id":64,"url_slug":65,"title":66,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":69},{"id":76,"url_slug":77,"title":78,"severity":40,"cvss_score":82,"vuln_type":84,"patched_in_version":81},{"version":532,"download_url":533,"svn_tag_url":534,"released_at":38,"has_diff":49,"diff_files_changed":535,"diff_lines":38,"trac_diff_url":536,"vulnerabilities":537,"is_current":49},"2.5","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fget-custom-field-values.2.5.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fget-custom-field-values\u002Ftags\u002F2.5\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fget-custom-field-values%2Ftags%2F2.1&new_path=%2Fget-custom-field-values%2Ftags%2F2.5",[538,539,540,541],{"id":34,"url_slug":35,"title":36,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":6},{"id":51,"url_slug":52,"title":53,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":6},{"id":64,"url_slug":65,"title":66,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":69},{"id":76,"url_slug":77,"title":78,"severity":40,"cvss_score":82,"vuln_type":84,"patched_in_version":81},{"version":543,"download_url":544,"svn_tag_url":545,"released_at":38,"has_diff":49,"diff_files_changed":546,"diff_lines":38,"trac_diff_url":38,"vulnerabilities":547,"is_current":49},"2.1","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fget-custom-field-values.2.1.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fget-custom-field-values\u002Ftags\u002F2.1\u002F",[],[548,549,550,551],{"id":34,"url_slug":35,"title":36,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":6},{"id":51,"url_slug":52,"title":53,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":6},{"id":64,"url_slug":65,"title":66,"severity":40,"cvss_score":56,"vuln_type":43,"patched_in_version":69},{"id":76,"url_slug":77,"title":78,"severity":40,"cvss_score":82,"vuln_type":84,"patched_in_version":81}]