[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fyazcj8R9gcwZ8bwavEFHZsGrXEPHVtM2aIs1aJDK0C0":3},{"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":13,"last_updated":14,"tested_up_to":15,"requires_at_least":16,"requires_php":14,"tags":17,"homepage":23,"download_link":24,"security_score":25,"vuln_count":13,"unpatched_count":13,"last_vuln_date":26,"fetched_at":27,"vulnerabilities":28,"developer":29,"crawl_stats":26,"alternatives":37,"analysis":148,"fingerprints":197},"views-output-formats","Views Output Formats","2.1","Stanislav Khromov","https:\u002F\u002Fprofiles.wordpress.org\u002Fkhromov\u002F","\u003Cp>This plugin provides JSON and XML output formats for Toolset Views.\u003C\u002Fp>\n\u003Cp>The plugin will also fetch all available custom fields for each post, making it truly simple to integrate WordPress\u003Cbr \u002F>\nwith other systems that speak JSON and XML.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>New in version 2.0\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>This plugin now supports Taxonomy and User queries!\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Usage\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>\u003Cem>Basic usage\u003C\u002Fem>\u003C\u002Fp>\n\u003Cp>Create your View, go to Settings -> Views Output Formats and pick your format. You will get a link to the XML or JSON version of the query.\u003C\u002Fp>\n\u003Ch3>Requirements\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>PHP 5.3 or higher\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Translations\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>None\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Upcoming features\u003C\u002Fh3>\n\u003Cp>Support for attaching taxonomy data to posts is planned\u003C\u002Fp>\n\u003Cp>Feel free to contribute over at GitHub:\u003Cbr \u002F>\nhttps:\u002F\u002Fgithub.com\u002Fkhromov\u002Fwp-views-output-formats\u003C\u002Fp>\n","Export your WordPress data in XML and JSON formats easily!",40,2626,0,"","4.6.30","3.6",[18,19,20,21,22],"json","query","views","wp_query","xml","http:\u002F\u002Fwordpress.org\u002Fextend\u002Fplugins\u002Fviews-output-formats","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fviews-output-formats.2.1.zip",100,null,"2026-03-15T10:48:56.248Z",[],{"slug":30,"display_name":7,"profile_url":8,"plugin_count":31,"total_installs":32,"avg_security_score":33,"avg_patch_time_days":34,"trust_score":35,"computed_at":36},"khromov",6,6130,90,30,87,"2026-04-04T20:22:29.761Z",[38,56,81,103,126],{"slug":39,"name":40,"version":41,"author":42,"author_profile":43,"description":44,"short_description":45,"active_installs":46,"downloaded":47,"rating":13,"num_ratings":13,"last_updated":48,"tested_up_to":49,"requires_at_least":49,"requires_php":14,"tags":50,"homepage":52,"download_link":53,"security_score":54,"vuln_count":13,"unpatched_count":13,"last_vuln_date":26,"fetched_at":55},"wp-ajax-query","WP Ajax Query","0.1","aizatto","https:\u002F\u002Fprofiles.wordpress.org\u002Faizatto\u002F","\u003Cp>WP Ajax Query allows you to query your WordPress database using the same query paramaters you would use for WP_Query, and return a JSON respresentation of the query results. This allows developers to easily interface with WordPress without having to relearn a new API.\u003C\u002Fp>\n\u003Ch3>How It Works\u003C\u002Fh3>\n\u003Cp>The Ajax Query interface would be available at http:\u002F\u002Fexample.com\u002Fwp-admin\u002Fadmin-ajax.php?action=query\u003C\u002Fp>\n\u003Cp>A sample jQuery request would be like:\u003Cbr \u002F>\n    $.get(ajaxurl, { action: ‘query’ }, function () { }, ‘json’);\u003C\u002Fp>\n\u003Cp>Querying for a post:\u003Cbr \u002F>\n    $.get(ajaxurl, { action: ‘query’, p: 1 }, function () { }, ‘json’);\u003C\u002Fp>\n\u003Cp>JSON results:\u003Cbr \u002F>\n    {\u003Cbr \u002F>\n      “id”: 1,\u003Cbr \u002F>\n      “type”: ‘post’,\u003Cbr \u002F>\n      “title”: “Hello World”,\u003Cbr \u002F>\n      “permalink”: “http:\\\u002F\\\u002Fexample.com\\\u002F?p=1”\u003Cbr \u002F>\n    }\u003C\u002Fp>\n\u003Cp>Query a category:\u003Cbr \u002F>\n    $.get(ajaxurl, { action: ‘query’, cat: 1 }, function () { }, ‘json’);\u003C\u002Fp>\n\u003Cp>JSON results:\u003Cbr \u002F>\n    {\u003Cbr \u002F>\n      “id”: 1\u003Cbr \u002F>\n      “type”: “category”,\u003Cbr \u002F>\n      “permalink”: “http:\\\u002F\\\u002Fexample.com\\\u002F?cat=1”,\u003Cbr \u002F>\n      “terms”: [],\u003Cbr \u002F>\n      “posts”: []\u003Cbr \u002F>\n    }\u003C\u002Fp>\n\u003Cpre>\u003Ccode>terms and `posts` represents an array of either terms that are sub categories of the category, or posts belonging to the category.\u003Ch3>Why I Created It\u003C\u002Fh3>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>Needed a common way to query the database for posts and taxonomies across multiple plugins, and didn’t find a suitable replacement.\u003C\u002Fp>\n","WP Ajax Query allows you to query your WordPress database using the same query paramaters you would use for WP_Query, and return a JSON respresentatio &hellip;",10,3507,"2010-05-27T11:25:00.000Z","3",[51,18,19,21],"ajax","http:\u002F\u002Fblog.aizatto.com\u002Fwp-ajax-query\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fwp-ajax-query.0.1.zip",85,"2026-03-15T15:16:48.613Z",{"slug":57,"name":58,"version":59,"author":60,"author_profile":61,"description":62,"short_description":63,"active_installs":64,"downloaded":65,"rating":66,"num_ratings":67,"last_updated":68,"tested_up_to":69,"requires_at_least":70,"requires_php":71,"tags":72,"homepage":76,"download_link":77,"security_score":78,"vuln_count":79,"unpatched_count":13,"last_vuln_date":80,"fetched_at":55},"json-content-importer","Get Use APIs – JSON Content Importer","2.0.10","berkux","https:\u002F\u002Fprofiles.wordpress.org\u002Fberkux\u002F","\u003Cp>The simplest method to link WordPress with external APIs\u003C\u002Fp>\n\u003Cp>JCI simplifies the task of retrieving data from a third-party REST API. The returned JSON-, XML, CSV, TXT-data can be neatly arranged and showcased on your WordPress site via a shortcode, a JCI Block or PHP. The plugin can generate a template for the data display.\u003C\u002Fp>\n\u003Cp>20 seconds: Load API and display data\u003C\u002Fp>\n\u003Cp>\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\u002FRBlrAUVywAk?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>7 minutes: Basic intro to JCI free\u003C\u002Fp>\n\u003Cp>\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\u002FSDUj1teNG2s?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\u003Ch3>Examples, Preview\u003C\u002Fh3>\n\u003Cp>Check out the live demonstration to explore how we’re interfacing with various APIs\u003Cbr \u002F>\n\u003Ca href=\"https:\u002F\u002Fapi.json-content-importer.com\u002Ffree-jci-plugin-example\u002Fwetter\u002F\" rel=\"nofollow ugc\">LIVE PREVIEW – WordPress and a external API\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=GJGBPvaKZsk\" rel=\"nofollow ugc\">Video: How to use the Wikipedia API\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch3>Main Plugin Features\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>Low code usage: Save time and avoid coding using an API\u003C\u002Fli>\n\u003Cli>Insert an API-URL into Step 1: Data is loaded, and and displayed. Save it as API-Access-Set.\u003C\u002Fli>\n\u003Cli>Use the API-Access-Set in Step 2 to create a Shortcode\u003C\u002Fli>\n\u003Cli>Optional for maximum flexibility: Use the API-Access-Set n PHP code\u003C\u002Fli>\n\u003Cli>Insert an API-URL into the JCI Block: Data is loaded, and a template can be generated to display the data.\u003C\u002Fli>\n\u003Cli>Easy to start: Check Installation – Is your WordPress ready for JCI? Most probably!\u003C\u002Fli>\n\u003Cli>Basic Settings: Check SSL, Cacher, Gutenberg and Authentication\u003C\u002Fli>\n\u003Cli>ContactForm7 Integration: Populate CF7 forms with JSON data and forward CF7-submitted data to an API.\u003C\u002Fli>\n\u003Cli>Use the JCI cacher to avoid many API requests\u003C\u002Fli>\n\u003Cli>JCI-Block :  Use the simple JCI Block interface to get data! Query the API and check the response. Then utilize the simple template generator inside the JCI Block to use the data!\u003C\u002Fli>\n\u003Cli>Contact Form 7 Integration: Fill form and submit to API\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Documentation\u003C\u002Fh3>\n\u003Cp>There’s a wealth of resources and support at your fingertips. Explore the articles listed below to begin your journey:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fdoc.json-content-importer.com\u002F\" rel=\"nofollow ugc\">JCI Manual\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fdoc.json-content-importer.com\u002Fjson-content-importer\u002Fstep-1-data-access\u002F\" rel=\"nofollow ugc\">Step 1: Access the Data\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fdoc.json-content-importer.com\u002Fjson-content-importer\u002Fstep-2-data-usage\u002F\" rel=\"nofollow ugc\">Step 2: Using the Data\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fdoc.json-content-importer.com\u002Fjson-content-importer\u002Fshortcode-basic-structure\u002F\" rel=\"nofollow ugc\">Shortcode – Basic structure\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fdoc.json-content-importer.com\u002Fjson-content-importer\u002Fpro-contactform7\u002F\" rel=\"nofollow ugc\">Contact Form 7 Integration\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fdoc.json-content-importer.com\u002Fjson-content-importer\u002Ffree-overview-videos\u002F\" rel=\"nofollow ugc\">Free JCI Plugin: Overview Videos\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fdoc.json-content-importer.com\u002Fjson-content-importer\u002Fbasic-start\u002F\" rel=\"nofollow ugc\">Free JCI Plugin: Getting Started\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>You need more?\u003C\u002Fh3>\n\u003Ch4>JSON Content Importer PRO\u003C\u002Fh4>\n\u003Cp>Both the free and PRO JCI Plugins serve the same purpose: retrieving data, transforming it, and publishing the results.\u003Cbr \u002F>\nHowever, while the free Plugin can only handle basic challenges, the PRO JCI Plugin offers nearly full control over WordPress, the database, and applications.\u003Cbr \u002F>\n\u003Ca href=\"https:\u002F\u002Fjson-content-importer.com\u002Fcompare\u002F\" rel=\"nofollow ugc\">Compare: Free vs. JCI PRO Plugin\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>PRO features:\u003Cbr \u002F>\n* application building by creating a searchform and connect it to a JSON-API in the background: pass GET-Variables to use a dynamic JSON-Feed-URL (“talk to API \u002F webservice”)\u003Cbr \u002F>\n* much better and more flexible templateengine: twig\u003Cbr \u002F>\n* create and use Custom Post Types\u003Cbr \u002F>\n* store Templates independent of pages\u003Cbr \u002F>\n* more Shortcode-Parameters\u003Cbr \u002F>\n* executing Shortcodes inside a template\u003Cbr \u002F>\n* more features…\u003C\u002Fp>\n","Connects an API to WordPress: Get API-data (JSON, XML, CSV...), show it with a Shortcode, a JCI Block or PHP. Generate a template with the JCI Block",6000,389563,98,78,"2026-02-20T04:35:00.000Z","6.9.4","5.3","7.0",[73,74,75,18,22],"api","csv","data","https:\u002F\u002Fjson-content-importer.com\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fjson-content-importer.2.0.10.zip",95,4,"2026-03-19 00:00:00",{"slug":82,"name":83,"version":84,"author":85,"author_profile":86,"description":87,"short_description":88,"active_installs":64,"downloaded":89,"rating":90,"num_ratings":34,"last_updated":91,"tested_up_to":92,"requires_at_least":93,"requires_php":14,"tags":94,"homepage":99,"download_link":100,"security_score":25,"vuln_count":101,"unpatched_count":13,"last_vuln_date":102,"fetched_at":55},"simple-yearly-archive","Simple Yearly Archive","2.2.4","wpseek","https:\u002F\u002Fprofiles.wordpress.org\u002Falphawolf\u002F","\u003Cp>Simple Yearly Archive is a rather neat and simple WordPress plugin that allows you to \u003Cstrong>display your archives in a year-based list\u003C\u002Fstrong>. It works mostly like the usual WP archive, but displays all published posts seperated by their year of publication. That said, it’s also possible to restrict the output to certain categories, and much more.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>See \u003Ca href=\"https:\u002F\u002Fwww.schloebe.de\u002Fwordpress\u002Fsimple-yearly-archive-plugin\u002F#tabwidget-27592\" title=\"Usage\" rel=\"nofollow ugc\">Usage\u003C\u002Fa> for examples, available parameters and more.\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Included languages:\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>English\u003C\u002Fli>\n\u003Cli>German (de_DE) (Thanks to me ;-))\u003C\u002Fli>\n\u003Cli>German (de_DE_formal) (Thanks for contributing formal german language goes to \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fpavog\" rel=\"nofollow ugc\">Paul Vogel\u003C\u002Fa>)\u003C\u002Fli>\n\u003Cli>Italian (it_IT) (Thanks for contributing italian language goes to \u003Ca href=\"https:\u002F\u002Fgidibao.net\" rel=\"nofollow ugc\">Gianni Diurno\u003C\u002Fa>)\u003C\u002Fli>\n\u003Cli>Russian (ru_RU) (Thanks for contributing russian language goes to \u003Ca href=\"https:\u002F\u002Fgrugl.me\" rel=\"nofollow ugc\">Dimitry German\u003C\u002Fa>)\u003C\u002Fli>\n\u003Cli>Belorussian (by_BY) (Thanks for contributing belorussian language goes to \u003Ca href=\"https:\u002F\u002Fwww.fatcow.com\" rel=\"nofollow ugc\">Marcis Gasuns\u003C\u002Fa>)\u003C\u002Fli>\n\u003Cli>Uzbek (uz_UZ) (Thanks for contributing uzbek language goes to \u003Ca href=\"https:\u002F\u002Fwww.comfi.com\" rel=\"nofollow ugc\">Alexandra Bolshova\u003C\u002Fa>)\u003C\u002Fli>\n\u003Cli>French (fr_FR) (Thanks for contributing french language goes to \u003Ca href=\"https:\u002F\u002Fwww.li-an.fr\u002Fblog\" rel=\"nofollow ugc\">Jean-Michel Meyer\u003C\u002Fa>)\u003C\u002Fli>\n\u003Cli>Chinese (zh_CN) (Thanks for contributing chinese language goes to \u003Ca href=\"https:\u002F\u002Fmarianama.net\" rel=\"nofollow ugc\">Mariana Ma\u003C\u002Fa>)\u003C\u002Fli>\n\u003Cli>Japanese (ja) (Thanks for contributing japanese language goes to \u003Ca href=\"https:\u002F\u002Fstaff.blog.bng.net\" rel=\"nofollow ugc\">Chestnut\u003C\u002Fa>)\u003C\u002Fli>\n\u003Cli>Portuguese Brazil (pt_BR) (Thanks for contributing portuguese brazil language goes to LucasTolle)\u003C\u002Fli>\n\u003Cli>Dutch (nl_NL) (Thanks for contributing dutch language goes to Bart Verkerk)\u003C\u002Fli>\n\u003Cli>Spanish (es) (Spanish translation by \u003Ca href=\"https:\u002F\u002Fwww.ibidemgroup.com\" rel=\"nofollow ugc\">Ibidem Group\u003C\u002Fa>)\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fwww.schloebe.de\u002Farchiv\u002F\" title=\"Click here for a demo\" rel=\"nofollow ugc\">Click here for a demo\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fx.com\u002Fwpseek\" title=\"Developer on X\" rel=\"nofollow ugc\">Developer on X\u003C\u002Fa> \u003Ca href=\"https:\u002F\u002Fbsky.app\u002Fprofile\u002Fcyberblitzbirne.bsky.social\" title=\"Developer on Bluesky\" rel=\"nofollow ugc\">Developer on Bluesky\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Looking for more WordPress plugins? Visit \u003Ca href=\"https:\u002F\u002Fwww.schloebe.de\u002Fportfolio\u002F\" rel=\"nofollow ugc\">www.schloebe.de\u002Fportfolio\u002F\u003C\u002Fa>\u003C\u002Fstrong>\u003C\u002Fp>\n","Simple Yearly Archive is a rather neat and simple Wordpress plugin that allows you to display your archives in a year-based list.",188503,94,"2026-02-15T14:05:00.000Z","6.9.99","3.7",[95,96,97,98,21],"archive","archives","gettext","wpml","https:\u002F\u002Fwww.schloebe.de\u002Fwordpress\u002Fsimple-yearly-archive-plugin\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fsimple-yearly-archive.zip",1,"2023-02-13 00:00:00",{"slug":104,"name":105,"version":106,"author":107,"author_profile":108,"description":109,"short_description":110,"active_installs":111,"downloaded":112,"rating":113,"num_ratings":114,"last_updated":115,"tested_up_to":69,"requires_at_least":116,"requires_php":117,"tags":118,"homepage":123,"download_link":124,"security_score":66,"vuln_count":101,"unpatched_count":13,"last_vuln_date":125,"fetched_at":55},"acf-views","Advanced Views – Display Custom Fields (ACF, Pods, MetaBox), Posts, CPT and Woo Products anywhere in Gutenberg, Elementor, Divi, Beaver…","3.8.3","WPLake","https:\u002F\u002Fprofiles.wordpress.org\u002Fwplakeorg\u002F","\u003Cp>Display content with full control over selection and layout. Lightweight and compatible with any theme or page builder.\u003C\u002Fp>\n\u003Ch3>⭐ Why Choose Advanced Views?\u003C\u002Fh3>\n\u003Cp>Advanced Views is a framework that empowers you to craft layouts and selections that you miss, without bloatware or heavy dependencies.\u003C\u002Fp>\n\u003Cp>✅ \u003Cstrong>Solid by design\u003C\u002Fstrong>: craft modular and reusable layouts. Eliminate replications, style conflicts, and avoid messy code snippets.\u003Cbr \u002F>\n✅ \u003Cstrong>Content-driven\u003C\u002Fstrong>: pull content dynamically, with granular filtering and sorting options, built on top of the native WordPress Query. Master advanced database queries with post fields, taxonomies, and meta values.\u003Cbr \u002F>\n✅ \u003Cstrong>Time-saver\u003C\u002Fstrong>: automate the groundwork and data fetching. Focus on creating while leaving typical routines behind.\u003Cbr \u002F>\n✅ \u003Cstrong>Fully customizable\u003C\u002Fstrong>: directly access the template code to create advanced elements, like Grids and Sliders, and harness your theme styles and scripts.\u003Cbr \u002F>\n✅ \u003Cstrong>Easy to embed\u003C\u002Fstrong>: copy and paste a native WordPress shortcode to add layouts anywhere.\u003C\u002Fp>\n\u003Ch3>🧩 Plenty of Use Cases\u003C\u002Fh3>\n\u003Cp>Custom fields and Post Types are essential to WordPress. Advanced Views natively supports them – giving you the freedom to pull, mix, and combine them in a common layout.\u003C\u002Fp>\n\u003Cp>Popular scenarios include:\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Displaying custom fields:\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>🔹On a single page: to enrich landing page sections\u003Cbr \u002F>\n🔹CPT-wide: estimated delivery time for all Products\u003Cbr \u002F>\n🔹Site-wide: contact details from the Options page\u003Cbr \u002F>\n🔹User-specific: fields of the current user in a custom banner or profile page\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Displaying Posts, Products and CPT:\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>🔹Posts: blog posts from a specific category\u003Cbr \u002F>\n🔹WooCommerce: related Products in a grid or carousel\u003Cbr \u002F>\n🔹Event lists: Show upcoming events, hide past events\u003Cbr \u002F>\n🔹Real Estate listings: properties by location, size, or type\u003Cbr \u002F>\n🔹Locations map: display all pick-up location markers on a single map\u003Cbr \u002F>\n🔹Reviews and Comments: product reviews or user comments\u003C\u002Fp>\n\u003Ch3>🔗 Multiple Content Sources\u003C\u002Fh3>\n\u003Cp>Advanced Views is vendor-independent and plugin-agnostic – so it will work with WordPress Posts, WooCommerce Products, and any CPT on your website.\u003C\u002Fp>\n\u003Cp>Learn it once and use it everywhere with built-in support for:\u003C\u002Fp>\n\u003Cp>🔹All Custom Post Types registered in WordPress\u003Cbr \u002F>\n🔹\u003Ca href=\"https:\u002F\u002Fwplake.gitbook.io\u002Fadvanced-views\u002Fgetting-started\u002Fsupported-data-vendors#id-1.-wordpress\" rel=\"nofollow ugc\">WordPress post fields\u003C\u002Fa> (title, featured image, author, taxonomy terms…)\u003Cbr \u002F>\n🔹\u003Ca href=\"https:\u002F\u002Fwplake.gitbook.io\u002Fadvanced-views\u002Fgetting-started\u002Fsupported-data-vendors#id-2.-woocoomerce-plugin\" rel=\"nofollow ugc\">Woo Product fields\u003C\u002Fa> (price, sku, stock status, weight…)\u003Cbr \u002F>\n🔹\u003Ca href=\"https:\u002F\u002Fwplake.gitbook.io\u002Fadvanced-views\u002Fgetting-started\u002Fsupported-data-vendors#id-3.-advanced-custom-fields-plugin\" rel=\"nofollow ugc\">Advanced Custom Fields\u003C\u002Fa> (whether it’s text, select, image, gallery, repeater or relationship)\u003Cbr \u002F>\n🔹\u003Ca href=\"https:\u002F\u002Fwplake.gitbook.io\u002Fadvanced-views\u002Fgetting-started\u002Fsupported-data-vendors#id-4.-metabox-plugin\" rel=\"nofollow ugc\">MetaBox fields\u003C\u002Fa> (like map, oEmbed, taxonomy, group… )\u003Cbr \u002F>\n🔹\u003Ca href=\"https:\u002F\u002Fwplake.gitbook.io\u002Fadvanced-views\u002Fgetting-started\u002Fsupported-data-vendors#id-5.-pods-plugin\" rel=\"nofollow ugc\">Pods fields\u003C\u002Fa> (from WYSIWYG, price, date and time… )\u003C\u002Fp>\n\u003Cp>You can integrate data from any external source, including API-based, directly into Layouts using snippets.\u003C\u002Fp>\n\u003Ch3>🚀 Powerful features\u003C\u002Fh3>\n\u003Cp>Whether you’re a developer working on a child theme, a web creator using a page builder, or a tech-savvy website owner, customizing your block-based theme, Advanced Views makes it easier for you with:\u003C\u002Fp>\n\u003Cp>🔹\u003Ca href=\"https:\u002F\u002Fwplake.gitbook.io\u002Fadvanced-views\u002Ftemplates\u002Ffile-system-storage\" rel=\"nofollow ugc\">Storage options\u003C\u002Fa>: craft Layouts using the on-site editor, or edit them inside your favourite IDE, with git-friendly templates.\u003Cbr \u002F>\n🔹\u003Ca href=\"https:\u002F\u002Fwplake.gitbook.io\u002Fadvanced-views\u002Ftemplates\u002Fmultilingual\" rel=\"nofollow ugc\">Multilingual-friendly\u003C\u002Fa>: translate any text or label in the Layouts using your favourite tool  (like WPML or Polylang)\u003Cbr \u002F>\n🔹\u003Ca href=\"https:\u002F\u002Fwplake.gitbook.io\u002Fadvanced-views\u002Fgetting-started\u002Fintroduction\u002Fkey-aspects#id-3.3-seamless-data-connection\" rel=\"nofollow ugc\">Automatic template validation\u003C\u002Fa>: keep all the Layouts up-to-date with bulk validation, and get prompted to update the relevant layouts when used meta fields have been changed.\u003Cbr \u002F>\n🔹\u003Ca href=\"https:\u002F\u002Fwplake.gitbook.io\u002Fadvanced-views\u002Ftemplates\u002Ftemplate-engines\" rel=\"nofollow ugc\">Template engine options\u003C\u002Fa>: opt for the Twig or Blade template engine site-wide, or mix it up and make a per Layout decision.\u003Cbr \u002F>\n🔹\u003Ca href=\"https:\u002F\u002Fwplake.gitbook.io\u002Fadvanced-views\u002Ftemplates\u002Fcss-and-js#id-1.1-just-in-time-assets\" rel=\"nofollow ugc\">Just-in-time assets loader\u003C\u002Fa>: get layout styles and scripts injected just-in-time, on a per-page basis. Make fast page loading and great speed metrics your defaults.\u003Cbr \u002F>\n🔹\u003Ca href=\"https:\u002F\u002Fwplake.gitbook.io\u002Fadvanced-views\u002Ftemplates\u002Flive-reload\" rel=\"nofollow ugc\">Live reload and Dev mode\u003C\u002Fa>: see live changes to Layouts on the page, and find used layouts without searching.\u003C\u002Fp>\n\u003Ch3>📚 Extensive Documentation & Friendly Support\u003C\u002Fh3>\n\u003Cp>🔹\u003Ca href=\"https:\u002F\u002Fdocs.advanced-views.com\u002F\" rel=\"nofollow ugc\">Helpful guides\u003C\u002Fa>, FAQs, tips, and common use cases with code snippets\u003Cbr \u002F>\n🔹Lite users are supported via the public \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fsupport\u002Fplugin\u002Facf-views\u002F\" rel=\"ugc\">wordpress.org forum\u003C\u002Fa>\u003Cbr \u002F>\n🔹Pro users get priority support via \u003Ca href=\"https:\u002F\u002Fadvanced-views.com\u002Fsupport\u002F\" rel=\"nofollow ugc\">our website\u003C\u002Fa>\u003Cbr \u002F>\n🔹Actively maintained and tested against the latest WordPress releases\u003C\u002Fp>\n\u003Ch3>🔓 Unlock More with Advanced Views Pro\u003C\u002Fh3>\n\u003Cp>Advanced Views Pro takes your content displays to the next level with extended features:\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Layouts get:\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>🔹\u003Ca href=\"https:\u002F\u002Fwplake.gitbook.io\u002Fadvanced-views\u002Fdisplay-content\u002Fmeta-fields\u002Flayout-fields\u002Frepeater-pro\" rel=\"nofollow ugc\">Repeater, Group, and Flexible fields support\u003C\u002Fa> – display complex nested fields — including repeaters within repeaters.\u003Cbr \u002F>\n🔹\u003Ca href=\"https:\u002F\u002Fwplake.gitbook.io\u002Fadvanced-views\u002Fdisplay-content\u002Fcustom-gutenberg-blocks-pro\" rel=\"nofollow ugc\">Gutenberg block option\u003C\u002Fa> – turn any layout into a Gutenberg block with a single checkbox. Same template with full markup control and zero React coding.\u003Cbr \u002F>\n🔹\u003Ca href=\"https:\u002F\u002Fwplake.gitbook.io\u002Fadvanced-views\u002Fdisplay-content\u002Ffront-end-assets-management-pro#supported-libraries-and-field-types\" rel=\"nofollow ugc\">Masonry, LightBox, Slider integrations\u003C\u002Fa> – turn your Repeater or User fields into a slider, Gallery Images into Masonry, or enable LightBox for single images.\u003Cbr \u002F>\n🔹\u003Ca href=\"https:\u002F\u002Fwplake.gitbook.io\u002Fadvanced-views\u002Ftemplates\u002Freusable-components-library-pro\" rel=\"nofollow ugc\">Reusable components library\u003C\u002Fa> – reuse existing Layouts on other websites with a single-click Git sync.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Post Selections get:\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>🔹\u003Ca href=\"https:\u002F\u002Fwplake.gitbook.io\u002Fadvanced-views\u002Fquery-content\u002Fmeta-filters-pro\" rel=\"nofollow ugc\">Meta filters\u003C\u002Fa> – precise post selections with filtering by meta fields: define bindings to URL arguments, current meta values, and more.\u003Cbr \u002F>\n🔹\u003Ca href=\"https:\u002F\u002Fwplake.gitbook.io\u002Fadvanced-views\u002Fquery-content\u002Fpagination-pro\" rel=\"nofollow ugc\">Ajax pagination\u003C\u002Fa> of results: choose between options for load more button, infinity scroll, or page numbers.\u003Cbr \u002F>\n🔹Post carousels: turn queried posts into sliders.\u003C\u002Fp>\n","Display content with full control over selection and layout. Lightweight and compatible with any theme or page builder.",2000,102678,96,35,"2026-02-27T14:22:00.000Z","5.5","7.4",[119,120,121,122,21],"custom-post-types","meta-fields","post-grid","taxonomy","https:\u002F\u002Fadvanced-views.com\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Facf-views.3.8.3.zip","2025-09-22 00:00:00",{"slug":127,"name":128,"version":129,"author":130,"author_profile":131,"description":132,"short_description":133,"active_installs":111,"downloaded":134,"rating":135,"num_ratings":136,"last_updated":137,"tested_up_to":69,"requires_at_least":138,"requires_php":139,"tags":140,"homepage":144,"download_link":145,"security_score":146,"vuln_count":79,"unpatched_count":13,"last_vuln_date":147,"fetched_at":55},"import-xml-feed","Import XML and RSS Feeds","2.1.6","Moove Agency","https:\u002F\u002Fprofiles.wordpress.org\u002Fmooveagency\u002F","\u003Cp>Import content from any XML or RSS file or URL.\u003C\u002Fp>\n\u003Cp>You can import the content to any post type in your WordPress install. You can also import taxonomies.\u003C\u002Fp>\n\u003Cp>Our plugin is especailly useful for importing content from Wix websites.\u003C\u002Fp>\n\u003Ch3>Step by Step process\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>Select the source ( URL or FILE UPLOAD ).\u003C\u002Fli>\n\u003Cli>Select your repeated XML element you want to import – this should be the node in your XML file which will be considered a post upon import.\u003C\u002Fli>\n\u003Cli>Select the post type you want to import the content to.\u003C\u002Fli>\n\u003Cli>Match the fields from the XML node you’ve selected (step 2) to the corresponding fields you have available on the post type.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Supported files and URLs\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>The XML source file should be a valid XML file. \u003Ca href=\"https:\u002F\u002Fvalidator.w3.org\u002Ffeed\u002F\" rel=\"nofollow ugc\">You can check your feed validation here.\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>JSON feeds needs to be first converted to RSS or XML file \u003Ca href=\"https:\u002F\u002Fwww.convertjson.com\u002Fjson-to-xml.htm\" rel=\"nofollow ugc\">using tools such as this.\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>The plugin will then check if the URL source or the uploaded file is valid before the import and processing starts\u003C\u002Fli>\n\u003Cli>If you use  URL source for import, please ensure the URL is not password protected\u003C\u002Fli>\n\u003Cli>Supported formats: XML 1.0, XML 2.0, Atom 1, RSS\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Features\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>\n\u003Cp>\u003Cstrong>XML Preview\u003C\u002Fstrong> – After successfully uploading an XML file or reading an external URL, the plugin will present you with an XML preview of the selected node. This can be used to check if you’ve selected the correct node and ensure that the data are read correctly by the plugin. The preview presents one item from the selected node but it is paginated so you can navigate back and forward between the elements.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>\u003Cstrong>Linking Taxonomies to Posts\u003C\u002Fstrong> – You can import categories and taxonomies from the XML file and link the imported posts to these taxonomies. First you need to have the taxonomies created in WordPress to allow the plugin to import into these taxonomies. By default WordPress has two taxonomies: categories and tags.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>\u003Cstrong>Limit posts\u003C\u002Fstrong> – In the “Import Settings” area you can set limits for the import. You can use multiple patterns to include posts in the import. Use semicolon to separate the values, for example: 1-8;10;14-\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>\u003Cstrong>Importing and linking multiple taxonomies to one post\u003C\u002Fstrong> – To import and link one post to multiple taxonomies, you need to have an XML element in your selected node with a list of categories separated by commas. These elements will be recognized and imported separately as taxonomy terms.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>\u003Cstrong>Save & Load templates\u003C\u002Fstrong> – Once the fields are matched, you can save the matching as a template, and use it again for another import.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>\u003Cstrong>Support for tag attributes\u003C\u002Fstrong>\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>\u003Cstrong>Custom Fields & ACF support\u003C\u002Fstrong>\u003C\u002Fp>\n\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Demo Video\u003C\u002Fh3>\n\u003Cdiv class=\"embed-vimeo\" style=\"text-align: center;\">\u003Ciframe loading=\"lazy\" src=\"https:\u002F\u002Fplayer.vimeo.com\u002Fvideo\u002F305452075\" width=\"750\" height=\"422\" frameborder=\"0\" webkitallowfullscreen mozallowfullscreen allowfullscreen>\u003C\u002Fiframe>\u003C\u002Fdiv>\n\u003Ch3>Testimonials\u003C\u002Fh3>\n\u003Cp>★★★★★\u003C\u002Fp>\n\u003Cblockquote>\n\u003Cp>“Excelent” – \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fsupport\u002Ftopic\u002Fexcelent-995\u002F\" rel=\"ugc\">mediadocena\u003C\u002Fa>\u003C\u002Fp>\n\u003C\u002Fblockquote>\n\u003Cp>★★★★★\u003C\u002Fp>\n\u003Cblockquote>\n\u003Cp>“Works as expected, smooth process” – \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fsupport\u002Ftopic\u002Fworks-as-expected-smooth-process\u002F\" rel=\"ugc\">Sunfire\u003C\u002Fa>\u003C\u002Fp>\n\u003C\u002Fblockquote>\n\u003Cp>★★★★★\u003C\u002Fp>\n\u003Cblockquote>\n\u003Cp>“Excellent! Finally a plugin that does exactly what I need” – \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fsupport\u002Ftopic\u002Fexcellent-finally-a-plugin-that-does-exactly-what-i-need\u002F\" rel=\"ugc\">golfinsa\u003C\u002Fa>\u003C\u002Fp>\n\u003C\u002Fblockquote>\n","Import content from any XML or RSS file or URL. Very useful for importing content from Wix websites.",122034,76,24,"2026-01-22T09:12:00.000Z","4.3","5.6",[141,142,18,143,22],"feed","import","rss","http:\u002F\u002Fwww.mooveagency.com","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fimport-xml-feed.2.1.6.zip",92,"2024-04-05 00:00:00",{"attackSurface":149,"codeSignals":170,"taintFlows":189,"riskAssessment":190,"analyzedAt":196},{"hooks":150,"ajaxHandlers":166,"restRoutes":167,"shortcodes":168,"cronEvents":169,"entryPointCount":13,"unprotectedCount":13},[151,157,162],{"type":152,"name":153,"callback":154,"file":155,"line":156},"action","admin_menu","register_admin_menus","wp-views-output-formats.php",32,{"type":158,"name":159,"callback":160,"file":155,"line":161},"filter","query_vars","register_vars",37,{"type":152,"name":163,"callback":164,"file":155,"line":165},"wp","register_endpoints",38,[],[],[],[],{"dangerousFunctions":171,"sqlUsage":172,"outputEscaping":174,"fileOperations":13,"externalRequests":13,"nonceChecks":13,"capabilityChecks":13,"bundledLibraries":188},[],{"prepared":13,"raw":13,"locations":173},[],{"escaped":79,"rawEcho":175,"locations":176},5,[177,180,182,184,186],{"file":155,"line":178,"context":179},147,"raw output",{"file":155,"line":181,"context":179},152,{"file":155,"line":183,"context":179},198,{"file":155,"line":185,"context":179},202,{"file":155,"line":187,"context":179},207,[],[],{"summary":191,"deductions":192},"The plugin 'views-output-formats' v2.1 exhibits a strong security posture based on the provided static analysis.  A significant positive indicator is the complete absence of direct SQL queries without prepared statements and the lack of file operations or external HTTP requests, which are common vectors for vulnerabilities. Furthermore, the absence of any recorded vulnerabilities in its history suggests a history of secure development practices. However, a concerning aspect is the low percentage of properly escaped output. With 44% of outputs properly escaped, this leaves a substantial portion of the plugin's output potentially vulnerable to cross-site scripting (XSS) attacks if user-supplied data is involved in these unescaped areas.  The complete lack of entry points in the static analysis is also unusual and may indicate a very specialized or limited functionality plugin, or perhaps limitations in the analysis itself.",[193],{"reason":194,"points":195},"Low percentage of properly escaped output",8,"2026-03-16T22:04:01.068Z",{"wat":198,"direct":203},{"assetPaths":199,"generatorPatterns":200,"scriptPaths":201,"versionParams":202},[],[],[],[],{"cssClasses":204,"htmlComments":205,"htmlAttributes":206,"restEndpoints":210,"jsGlobals":211,"shortcodeOutput":212},[],[],[207,208,209],"vof_id","vof_format","vof_token",[],[],[213,214],"XML\u003C\u002Fa>","JSON\u003C\u002Fa>"]