[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$ftogISXqZU9xfM1ayF2KtrzjWujMJJMkvgF7FRo-_NI0":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":17,"tags":18,"homepage":24,"download_link":25,"security_score":26,"vuln_count":13,"unpatched_count":13,"last_vuln_date":27,"fetched_at":28,"vulnerabilities":29,"developer":30,"crawl_stats":27,"alternatives":36,"analysis":142,"fingerprints":174},"twig-anything-csv","CSV Format","1.1","meglio","https:\u002F\u002Fprofiles.wordpress.org\u002Fmeglio\u002F","\u003Cp>Read CSV data from local files, WordPres media files, local or remote databases or 3rd party API, and output it anywhere in WordPress with using shortcodes, in posts\u002Fpages, headers\u002Ffooters, widgets or in Visual Composer.\u003C\u002Fp>\n\u003Cp>You can configure how CSV is parsed by specifying delimiter character, enclosure character and escape character.\u003C\u002Fp>\n\u003Cp>\u003Cem>This is a free add-on that adds CSV support (comma-separated values) to the\u003Cbr \u002F>\n\u003Ca href=\"https:\u002F\u002Ftwiganything.com\u002F\" title=\"Twig Anything\" rel=\"nofollow ugc\">Twig Anything\u003C\u002Fa> WordPress plugin.\u003C\u002Fem>\u003C\u002Fp>\n\u003Cp>Tutorials below demonstrate 3 examples:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Example 1: generate text, one line for each line from CSV\u003C\u002Fli>\n\u003Cli>Example 2: generate a table\u003C\u002Fli>\n\u003Cli>Example 3: use shortcodes to output CSV anywhere in WordPress\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>EXAMPLE 1: MULTILINE TEXT\u003C\u002Fh4>\n\u003Cp>Let us use a CSV file with a list of countries and their corresponding top-level domain names (TLD). Here is an extract from the file:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>Belgium,Brussels,EUR,Euro,BE,.be\nBelize,Belmopan,BZD,Dollar,BZ,.bz\nBenin,Porto-Novo,XOF,Franc,BJ,.bj\nBhutan,Thimphu,BTN,Ngultrum,BT,.bt\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>In our example, let’s display TLDs for all countries that start with “D”:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>Denmark - .dk\nDjibouti - .dj\nDominica - .dm\nDominican Republic - .do\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>Columns are numbered starting from #0, so we will need the column #0 (country name) and #5 (top-level domain name).\u003C\u002Fp>\n\u003Cp>After the CSV input has been parsed, the resulting lines are passed to your Twig Template as the \u003Cstrong>data\u003C\u002Fstrong> variable. You can then loop over it with using \u003Ca href=\"http:\u002F\u002Ftwig.sensiolabs.org\u002Fdoc\u002Ftags\u002Ffor.html\" rel=\"nofollow ugc\">“for” syntax:\u003C\u002Fa>:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>{% for row in data if row.0|slice(0,1)|upper == 'D' %}\n  {{ row.0 }} - \u003Cstrong>{{row.5}}\u003C\u002Fstrong>\u003Cbr\u002F>\n{% endfor %}\n\n{% for row in data %}...{% endfor %} is the loop. The code inside the loop will be rendered once for every line from the CSV file.\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>Let us take a closer look at this piece: \u003Ccode>if row.0|slice(0,1)|upper == 'D'\u003C\u002Fcode>\u003C\u002Fp>\n\u003Cp>First of all, \u003Ccode>row.0\u003C\u002Fcode> is how we access column #0, a country name in our case. Next, \u003Ccode>|slice(0,1)\u003C\u002Fcode> is a Twig filter that takes the first character of the country name. The next filter is \u003Ccode>|upper\u003C\u002Fcode> and it simply uppercases the first letter returned by the previous filter. Finally, we only allow for countries that start with the “D” letter: \u003Ccode>== 'D'\u003C\u002Fcode>.\u003C\u002Fp>\n\u003Cp>Inside the loop, we output a country name with using \u003Ccode>{{row.0}}\u003C\u002Fcode> and a TLD name with using \u003Ccode>{{row.5}}\u003C\u002Fcode>. Plus a very basic HTML markup: \u003Ccode>\u003Cbr\u002F>\u003C\u002Fcode> to insert a line break and \u003Ccode>\u003Cstrong>...\u003C\u002Fstrong>\u003C\u002Fcode> to make TLD name appear bold.\u003C\u002Fp>\n\u003Ch4>EXAMPLE 2: TABLE\u003C\u002Fh4>\n\u003Cp>Using the same CSV file, let’s now output our data in a table with using HTML markup.\u003C\u002Fp>\n\u003Cp>If you are not very familiar with HTML, I recommend going through the following tutorials – you’ll learn in 10 minutes, I guarantee!\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fcomputerservices.temple.edu\u002Fcreating-tables-html\" rel=\"nofollow ugc\">Tutorial 1\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fcss-tricks.com\u002Fcomplete-guide-table-element\u002F\" rel=\"nofollow ugc\">Tutorial 2\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>You can also use the following table generators and just copy-paste the HTML they generate right into your template. The generators also allow to apply some basic styling, like borders, colors, margins, paddings etc.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ca href=\"http:\u002F\u002Fwww.rapidtables.com\u002Fweb\u002Ftools\u002Fhtml-table-generator.htm\" rel=\"nofollow ugc\">Generator 1\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"http:\u002F\u002Fwww.textfixer.com\u002Fhtml\u002Fhtml-table-generator.php\" rel=\"nofollow ugc\">Generator 2\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>So, we will use the following HTML tags:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ccode>\u003Ctable>...\u003C\u002Ftable>\u003C\u002Fcode> to make a table\u003C\u002Fli>\n\u003Cli>\u003Ccode>\u003Cthead>...\u003C\u002Fthead>\u003C\u002Fcode> to make a table header with column headings\u003C\u002Fli>\n\u003Cli>\u003Ccode>\u003Ctbody>...\u003C\u002Ftbody>\u003C\u002Fcode> to make a table body with all the rows from CSV\u003C\u002Fli>\n\u003Cli>\u003Ccode>\u003Ctr>...\u003C\u002Ftr>\u003C\u002Fcode> to make a table row\u003C\u002Fli>\n\u003Cli>\u003Ccode>\u003Cth>...\u003C\u002Fth>\u003C\u002Fcode> to make a cell in the header’s row\u003C\u002Fli>\n\u003Cli>\u003Ccode>\u003Ctd>...\u003C\u002Ftd>\u003C\u002Fcode> to make a cell in a regular rows in the table’s body\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Here is our template:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003Ctable>\n  \u003Cthead>\n    \u003Ctr>\n      \u003Cth>Country\u003C\u002Fth>\n      \u003Cth>TLD\u003C\u002Fth>\n    \u003C\u002Ftr>\n  \u003C\u002Fthead>\n  \u003Ctbody>\n  {% for row in data if row.0|slice(0,1)|upper == 'D' %}\n  \u003Ctr>\n    \u003Ctd>{{ row.0 }}\u003C\u002Ftd>\n    \u003Ctd>{{ row.5 }}\u003C\u002Ftd>\n  \u003C\u002Ftr>\n  {% endfor %}\n  \u003C\u002Ftbody>\n\u003C\u002Ftable>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>Notice how we use the \u003Ccode>{% for row in data %}\u003C\u002Fcode> syntax to loop over CSV lines,\u003Cbr \u002F>\nand then output a table row \u003Ccode>\u003Ctr>...\u003C\u002Ftr>\u003C\u002Fcode> inside the loop, so that\u003Cbr \u002F>\na new row is made for every CSV line.\u003C\u002Fp>\n\u003Cp>Actually, you can use just any HTML and stylize your table the way you need.\u003Cbr \u002F>\nJust don’t forget to put \u003Ccode>{{row.0}}\u003C\u002Fcode>, \u003Ccode>{{row.1}}\u003C\u002Fcode> etc where you want\u003Cbr \u002F>\nyour csv values in the cells \u003Ccode>\u003Ctd>...\u003C\u002Ftd>\u003C\u002Fcode>.\u003C\u002Fp>\n\u003Ch4>EXAMPLE 3: SHORTCODES\u003C\u002Fh4>\n\u003Cp>While you prepare your template, you usually preview it many times by clicking\u003Cbr \u002F>\nthe “Preview Changes” button. Once you are happy with the preview, you will\u003Cbr \u002F>\nwant to embed it somewhere – in a post or a page, footer \u002F header,\u003Cbr \u002F>\nin a widget or as a Visual Composer block.\u003C\u002Fp>\n\u003Cp>To embed your template, you will use a shortcode:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>[twig-anything slug=\"my-template-slug\"]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>In WordPress, every Twig Template has its own slug, just like posts and pages.\u003Cbr \u002F>\nIt can be found under the template title.\u003C\u002Fp>\n\u003Cp>Alternatively, you can use the template ID:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>[twig-anything id=\"123\"]\n\u003C\u002Fcode>\u003C\u002Fpre>\n","Read CSV data from local files, WordPres media files, local or remote databases or 3rd party API, and output it anywhere in WordPress with using short &hellip;",10,2023,0,"2015-08-14T11:37:00.000Z","4.2.39","3.6.1","",[19,20,21,22,23],"comma-separated-values","comma-separated","csv","csv-api","excel","https:\u002F\u002Ftwiganything.com\u002Fcsv-format","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ftwig-anything-csv.zip",85,null,"2026-03-15T15:16:48.613Z",[],{"slug":7,"display_name":7,"profile_url":8,"plugin_count":31,"total_installs":32,"avg_security_score":26,"avg_patch_time_days":33,"trust_score":34,"computed_at":35},2,20,30,84,"2026-04-05T02:27:35.653Z",[37,55,79,104,122],{"slug":38,"name":39,"version":40,"author":41,"author_profile":42,"description":43,"short_description":44,"active_installs":11,"downloaded":45,"rating":46,"num_ratings":47,"last_updated":48,"tested_up_to":49,"requires_at_least":17,"requires_php":17,"tags":50,"homepage":17,"download_link":54,"security_score":26,"vuln_count":13,"unpatched_count":13,"last_vuln_date":27,"fetched_at":28},"csv-download","CSV Download","1.0.0","desie314","https:\u002F\u002Fprofiles.wordpress.org\u002Fdesie314\u002F","\u003Cp>A plugin for WP developers to easily add CSV download links to the admin section or front end. When a specific GET variable is detected (from the download link) your data, which needs to be a multi-dimensional array, is passed to a function that converts it to a csv file and triggers the download.\u003C\u002Fp>\n\u003Cp>Add the following code to \u003Cstrong>functions.php\u003C\u002Fstrong>.\u003C\u002Fp>\n\u003Ch4>Admin Example\u003C\u002Fh4>\n\u003Cpre>\u003Ccode>\u002F**\n * Instantiate CSVDownload class with appropriate arguments (listed in class).\n * Arguments are optional\n *\u002F\nif (class_exists('CSVDownload')) {\n  $csv_button = New CSVDownload(array(\n    'post_types' => array('page'),\n    'post_type_ids' => array(420, 114, 749),\n    'metabox_title' => 'Download CSV Data',\n    'help_text' => 'CSV file containing useful data.',\n    'parameter' => 'csv_export_button',\n    'button_text' => 'Download'\n  ));\n}\n\n\u002F**\n * Get results, convert to csv file, and trigger download.\n *\u002F\nif(isset($_GET[$csv_button->parameter])) {\n  add_action('admin_init', function(){\n    \u002F\u002F Get results array\n    $results = get_csv_file_results();\n    \u002F\u002F Convert results array to csv file and trigger download.\n    CSVDownload::download_csv_results(array(\n      'results' => $results,\n      'file_name' => 'csv_data'\n    ));\n    exit;\n  }, 1);\n}\n\n\u002F**\n * Get the results array for the csv button download.\n *\n * @return array\n *\u002F\nfunction get_csv_file_results(){\n\n  \u002F\u002F Create multi-dimensional array.\n  $results_array = array(\n    array('Email','User Name','Favorite Color'), \u002F\u002F Column headers\n    array('fake@email.com','coolguy1','blue'),\n    array('fake@email.com','coolguy2','orange'),\n    array('fake@email.com','coolguy3','pink'),\n    array('fake@email.com','coolguy4','red'),\n  );\n\n  \u002F\u002F Return results array\n  return $results_array;\n}\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>Front End Example\u003C\u002Fh4>\n\u003Cp>Add a button element to your HTML.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003Ca href=\"\u003C?php echo $_SERVER[\"REQUEST_URI\"]; ?>?csv_export_button=1\">Download\u003C\u002Fa>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>Add init action callback and provide array data.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F**\n * Get results, convert to csv file, and trigger download.\n *\u002F\nif(isset($_GET['csv_export_button'])) {\n  add_action('init', function(){\n    \u002F\u002F Get results array\n    $results = get_csv_file_results();\n    \u002F\u002F Convert results array to csv file and trigger download.\n    CSVDownload::download_csv_results(array(\n      'results' => $results,\n      'file_name' => 'csv_data'\n    ));\n    exit;\n  }, 1);\n}\n\n\u002F**\n * Get the results array for the csv button download.\n *\n * @return array\n *\u002F\nfunction get_csv_file_results(){\n\n  \u002F\u002F Create multi-dimensional array.\n  $results_array = array(\n    array('Email','User Name','Favorite Color'), \u002F\u002F Column headers\n    array('fake@email.com','coolguy1','blue'),\n    array('fake@email.com','coolguy2','orange'),\n    array('fake@email.com','coolguy3','pink'),\n    array('fake@email.com','coolguy4','red'),\n  );\n\n  \u002F\u002F Return results array\n  return $results_array;\n}\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Ca href=\"http:\u002F\u002Fagencylabs.com\u002F\" rel=\"nofollow ugc\">AgencyLabs.com\u003C\u002Fa> – A digital production studio.\u003C\u002Fp>\n","A plugin for WP developers to easily add CSV download links to the admin section or front end.",1764,100,1,"2016-08-02T18:36:00.000Z","4.5.33",[51,21,38,52,53],"comma-separated-values-list","csv-download-button","csv-download-link","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fcsv-download.zip",{"slug":56,"name":57,"version":58,"author":59,"author_profile":60,"description":61,"short_description":62,"active_installs":63,"downloaded":64,"rating":46,"num_ratings":65,"last_updated":66,"tested_up_to":67,"requires_at_least":68,"requires_php":69,"tags":70,"homepage":74,"download_link":75,"security_score":76,"vuln_count":77,"unpatched_count":13,"last_vuln_date":78,"fetched_at":28},"tablepress","TablePress – Tables in WordPress made easy","3.2.8","Tobias Bäthge","https:\u002F\u002Fprofiles.wordpress.org\u002Ftobiasbg\u002F","\u003Cp>\u003Cstrong>Boost your website with feature-rich tables that your visitors will love!\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>TablePress is the most popular and highest-rated WordPress table plugin.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Easily create, edit, and manage \u003Cstrong>beautiful and modern\u003C\u002Fstrong> data tables, no matter if \u003Cstrong>small or large\u003C\u002Fstrong>!\u003C\u002Fli>\n\u003Cli>Add live \u003Cstrong>sorting\u003C\u002Fstrong>, \u003Cstrong>pagination\u003C\u002Fstrong>, \u003Cstrong>searching\u003C\u002Fstrong>, and more interactivity for your site’s visitors!\u003C\u002Fli>\n\u003Cli>Use any type of data, insert \u003Cstrong>images\u003C\u002Fstrong>, \u003Cstrong>links\u003C\u002Fstrong>, and even \u003Cstrong>math formulas\u003C\u002Fstrong>!\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Import\u003C\u002Fstrong> and \u003Cstrong>export\u003C\u002Fstrong> tables from\u002Fto Excel, CSV, HTML, and JSON files or URLs.\u003C\u002Fli>\n\u003Cli>Embed tables into posts, pages, or other site areas using the block editor, an Elementor widget, or Shortcodes.\u003C\u002Fli>\n\u003Cli>All with \u003Cstrong>no coding knowledge needed\u003C\u002Fstrong>!\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Even \u003Cstrong>more great features\u003C\u002Fstrong> for you and your site’s visitors and \u003Cstrong>priority email support\u003C\u002Fstrong> are \u003Cstrong>available\u003C\u002Fstrong> with a Premium license plan of TablePress. \u003Ca href=\"https:\u002F\u002Ftablepress.org\u002Fpremium\u002F?utm_source=wordpress.org&utm_medium=textlink&utm_content=readme\" rel=\"nofollow ugc\">Go check them out!\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch4>More information\u003C\u002Fh4>\n\u003Cp>Visit \u003Ca href=\"https:\u002F\u002Ftablepress.org\u002F\" rel=\"nofollow ugc\">tablepress.org\u003C\u002Fa> for more information, take a look at \u003Ca href=\"https:\u002F\u002Ftablepress.org\u002Fdemo\u002F\" rel=\"nofollow ugc\">example tables\u003C\u002Fa>, or \u003Ca href=\"https:\u002F\u002Ftablepress.org\u002Fdemo\u002F#try\" rel=\"nofollow ugc\">try TablePress on a free test site\u003C\u002Fa>. For latest news, \u003Ca href=\"https:\u002F\u002Ftwitter.com\u002FTablePress\" rel=\"nofollow ugc\">follow @TablePress\u003C\u002Fa> on Twitter\u002FX or subscribe to the \u003Ca href=\"https:\u002F\u002Ftablepress.org\u002F#newsletter\" rel=\"nofollow ugc\">TablePress Newsletter\u003C\u002Fa>.\u003C\u002Fp>\n\u003Ch3>How to use TablePress\u003C\u002Fh3>\n\u003Cp>After installing the plugin, you can create and manage tables on the “TablePress” screen in the WordPress Dashboard.\u003C\u002Fp>\n\u003Cp>To insert a table into a post or page, add a “TablePress table” block in the block editor or a widget in the Elementor page builder and select the desired table or use Shortcodes with other page builders.\u003C\u002Fp>\n\u003Cp>Beginner-friendly step-by-step \u003Ca href=\"https:\u002F\u002Ftablepress.org\u002Ftutorials\u002F\" rel=\"nofollow ugc\">tutorials, guides, and how-tos\u003C\u002Fa> show how to achieve common and popular tasks with TablePress.\u003Cbr \u002F>\nExamples for common styling changes via “Custom CSS” code can be found on the \u003Ca href=\"https:\u002F\u002Ftablepress.org\u002Ffaq\u002F\" rel=\"nofollow ugc\">TablePress FAQ page\u003C\u002Fa>.\u003Cbr \u002F>\nYou may also add certain features (like sorting, pagination, filtering, alternating row colors, row highlighting, print name and\u002For description, …) by enabling the corresponding checkboxes on a table’s “Edit” screen.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Even more great features for you and your site’s visitors and priority email support are available with a Premium license plan of TablePress. \u003Ca href=\"https:\u002F\u002Ftablepress.org\u002Fpremium\u002F?utm_source=wordpress.org&utm_medium=textlink&utm_content=readme\" rel=\"nofollow ugc\">Go check them out!\u003C\u002Fa>\u003C\u002Fstrong>\u003C\u002Fp>\n","Embed beautiful, accessible, and interactive tables into your WordPress website’s posts and pages, without having to write code!",700000,22934643,4622,"2026-03-03T04:48:00.000Z","6.9.4","6.2","7.4",[21,23,71,72,73],"spreadsheet","table","tables","https:\u002F\u002Ftablepress.org\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ftablepress.3.2.8.zip",89,9,"2025-11-03 14:02:33",{"slug":80,"name":81,"version":82,"author":83,"author_profile":84,"description":85,"short_description":86,"active_installs":87,"downloaded":88,"rating":89,"num_ratings":90,"last_updated":91,"tested_up_to":92,"requires_at_least":93,"requires_php":94,"tags":95,"homepage":101,"download_link":102,"security_score":76,"vuln_count":77,"unpatched_count":13,"last_vuln_date":103,"fetched_at":28},"woocommerce-exporter","Store Exporter – Export WooCommerce Products, Orders, Subscriptions, Customers","2.7.8","Josh Kohlbach","https:\u002F\u002Fprofiles.wordpress.org\u002Fjkohlbach\u002F","\u003Ch4>The Best WooCommerce Export Plugin – Products, Orders, Subscriptions, Users, and More!\u003C\u002Fh4>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fvisser.com.au\u002F\" rel=\"nofollow ugc\">Get Premium\u003C\u002Fa> (Scheduled exports + more features) | \u003Ca href=\"https:\u002F\u002Fvisser.com.au\u002Fdocumentation\u002Fstore-exporter-deluxe\u002F\" rel=\"nofollow ugc\">Documentation\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Export WooCommerce Products, Orders, Categories, Tags, Users and other store details into Excel spreadsheets that suit your store requirements.\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Simply click Quick Export to produce concise, ready to use Excel spreadshseets.\u003C\u002Fp>\n\u003Cp>Screen-loads of export fields, filters and options are available to customise each export type, with native export integration for 125+ WooCommerce Plugins.\u003C\u002Fp>\n\u003Cp>This WooCommerce export Plugin maintains compatibility with the latest WooCommerce release through regular Plugin updates, we also proudly maintain compatibility with legacy releases of WooCommerce.\u003C\u002Fp>\n\u003Cp>Supported since 2012 Store Exporter for WooCommerce is maintained by an active community of store owners and developers providing feature suggestions and feedback.\u003C\u002Fp>\n\u003Ch4>WooCommerce export types\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Export Products\u003C\u002Fli>\n\u003Cli>Export Categories\u003C\u002Fli>\n\u003Cli>Export Tags\u003C\u002Fli>\n\u003Cli>Export Brands (*)\u003C\u002Fli>\n\u003Cli>Export Orders\u003C\u002Fli>\n\u003Cli>Export Customers (*)\u003C\u002Fli>\n\u003Cli>Export Users\u003C\u002Fli>\n\u003Cli>Export Coupons (*)\u003C\u002Fli>\n\u003Cli>Export Subscriptions (*)\u003C\u002Fli>\n\u003Cli>Export Product Vendors (*)\u003C\u002Fli>\n\u003Cli>Export Bookings (*)\u003C\u002Fli>\n\u003Cli>Export Commissions (*)\u003C\u002Fli>\n\u003Cli>Export Shipping Classes (*)\u003C\u002Fli>\n\u003Cli>Export Attributes (*)\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>WooCommerce export features\u003C\u002Fh4>\n\u003Cp>🔸 Toggle and save export fields\u003Cbr \u002F>\n🔸 Field label editor (\u003Cem>)\u003Cbr \u002F>\n🔸 Scheduled exports (\u003C\u002Fem>)\u003Cbr \u002F>\n🔸 Export templates (\u003Cem>)\u003Cbr \u002F>\n🔸 Compatible with WordPress Multisite\u003Cbr \u002F>\n🔸 Compatible with WPML (WordPress Multilingual) (\u003C\u002Fem>)\u003Cbr \u002F>\n🔸 Compatible with WP-CLI (\u003Cem>)\u003Cbr \u002F>\n🔸 Export to CSV file\u003Cbr \u002F>\n🔸 Export to TSV file (\u003C\u002Fem>)\u003Cbr \u002F>\n🔸 Export to Excel 2007 (XLS) file (\u003Cem>)\u003Cbr \u002F>\n🔸 Export to Excel 2013 (XLSX) file (\u003C\u002Fem>)\u003Cbr \u002F>\n🔸 Export to XML file (\u003Cem>)\u003Cbr \u002F>\n🔸 Export to RSS file (\u003C\u002Fem>)\u003Cbr \u002F>\n🔸 Export to WordPress Media\u003Cbr \u002F>\n🔸 Export to e-mail addresses (\u003Cem>)\u003Cbr \u002F>\n🔸 Export to fixed filename (\u003C\u002Fem>)\u003Cbr \u002F>\n🔸 Export to remote FTP\u002FFTPS\u002FSFTP (\u003Cem>)\u003Cbr \u002F>\n🔸 Export to remote POST (\u003C\u002Fem>)\u003Cbr \u002F>\n🔸 Supports external CRON (\u003Cem>)\u003Cbr \u002F>\n🔸 WP-CLI support (\u003C\u002Fem>)\u003C\u002Fp>\n\u003Ch4>See our WooCommerce export Plugin in action\u003C\u002Fh4>\n\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\u002FxYeP2eDEOM4?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>\n\u003Cp>(Thanks to Martha Waugh!)\u003C\u002Fp>\n\u003Ch4>WooCommerce export filters\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Export Products by Product Category\u002FTag\u003C\u002Fli>\n\u003Cli>Export Products by Product Status\u003C\u002Fli>\n\u003Cli>Export Products by Type including Variations\u003C\u002Fli>\n\u003Cli>Export Products by Stock Status\u002FQuantity\u003C\u002Fli>\n\u003Cli>Export Products by Featured\u003C\u002Fli>\n\u003Cli>Export Products by Date Modified\u003C\u002Fli>\n\u003Cli>Export Orders by Order Date\u003C\u002Fli>\n\u003Cli>Export Orders by Order Status (*)\u003C\u002Fli>\n\u003Cli>Export Orders by Customer (*)\u003C\u002Fli>\n\u003Cli>Export Orders by Billing\u002FShipping Country (*)\u003C\u002Fli>\n\u003Cli>Export Orders by Product (*)\u003C\u002Fli>\n\u003Cli>Export Orders by Product Category\u002FTag\u002FBrand (*)\u003C\u002Fli>\n\u003Cli>Export Orders by Order ID\u002FInvoice Number (*)\u003C\u002Fli>\n\u003Cli>Export Orders by Payment Gateway\u002FShipping Method (*)\u003C\u002Fli>\n\u003Cli>Export Orders by Coupon Code (*)\u003C\u002Fli>\n\u003Cli>Export Customers by Order Status (*)\u003C\u002Fli>\n\u003Cli>Export Customers by User Role (*)\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>(*) Requires the Pro upgrade to enable additional store export functionality.\u003C\u002Fp>\n\u003Ch4>Native export integration with 125+ WooCommerce Plugins\u003C\u002Fh4>\n\u003Cp>Just a few of the features unlocked in the \u003Ca href=\"https:\u002F\u002Fvisser.com.au\u002Fplugins\u002Fstore-exporter-deluxe\u002F?platform=wc\" rel=\"nofollow ugc\">Pro upgrade of Store Exporter\u003C\u002Fa> include:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Export All in One SEO Pack\u003C\u002Fli>\n\u003Cli>Export Advanced Google Product Feed\u003C\u002Fli>\n\u003Cli>Export Product Addons\u003C\u002Fli>\n\u003Cli>Export Sequential Order Number Pro\u003C\u002Fli>\n\u003Cli>Export Checkout Manager\u003C\u002Fli>\n\u003Cli>Export Checkout Manager Pro\u003C\u002Fli>\n\u003Cli>Export Checkout Field Editor\u003C\u002Fli>\n\u003Cli>Export Cost of Goods\u003C\u002Fli>\n\u003Cli>Export Per-Product Shipping\u003C\u002Fli>\n\u003Cli>Export Print Invoice & Delivery Note\u003C\u002Fli>\n\u003Cli>Export Local Pickups Plus\u003C\u002Fli>\n\u003Cli>Export WooCommerce Subscriptions\u003C\u002Fli>\n\u003Cli>Export Checkout Field Manager\u003C\u002Fli>\n\u003Cli>Export Currency Switcher\u003C\u002Fli>\n\u003Cli>Export WooCommerce PDF Invoices & Packing Slips\u003C\u002Fli>\n\u003Cli>Export WooCommerce Checkout Add-ons\u003C\u002Fli>\n\u003Cli>Export Product Vendors\u003C\u002Fli>\n\u003Cli>Export WooCommerce Jetpack\u003C\u002Fli>\n\u003Cli>Import fields for Product Importer Deluxe\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>… and many more free and Premium extensions for WooCommerce and WordPress.\u003C\u002Fp>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fvisser.com.au\u002Fplugins\u002Fwoocommerce-export\u002F\" rel=\"nofollow ugc\">For more information visit our site.\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>Happy exporting! 🙂\u003C\u002Fp>\n\u003Ch3>Usage\u003C\u002Fh3>\n\u003Col>\n\u003Cli>Open WooCommerce > Store Export from the WordPress Administration\u003C\u002Fli>\n\u003Cli>Select the Export tab on the Store Exporter screen\u003C\u002Fli>\n\u003Cli>Select which export type and WooCommerce details you would like to export\u003C\u002Fli>\n\u003Cli>Click Export\u003C\u002Fli>\n\u003Cli>Download archived copies of previous exports from the Archives tab\u003C\u002Fli>\n\u003C\u002Fol>\n\u003Cp>Done!\u003C\u002Fp>\n\u003Ch3>Support\u003C\u002Fh3>\n\u003Cp>If you have any problems, questions or suggestions please create a topic here on the Store Exporter dedicated forum.\u003C\u002Fp>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fsupport\u002Fplugin\u002Fwoocommerce-exporter\" rel=\"ugc\">Store Exporter on w.org\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch3>Disclaimer\u003C\u002Fh3>\n\u003Cp>It is not responsible for any harm or wrong doing this Plugin may cause. Users are fully responsible for their own use. This Plugin is to be used WITHOUT warranty.\u003C\u002Fp>\n","Export WooCommerce products, orders, customers, categories, tags, subscriptions & more into formatted files like CSV, XML, Excel 2007, XLS, XLSX.",7000,663125,82,166,"2026-03-05T04:31:00.000Z","7.0","5.4","5.6",[96,97,98,99,100],"csv-excel-export","export-orders","export-products","export-subscriptions","woocommerce-export","https:\u002F\u002Fvisser.com.au\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fwoocommerce-exporter.2.7.8.zip","2025-07-15 00:00:00",{"slug":105,"name":106,"version":107,"author":108,"author_profile":109,"description":110,"short_description":111,"active_installs":112,"downloaded":113,"rating":34,"num_ratings":114,"last_updated":115,"tested_up_to":67,"requires_at_least":116,"requires_php":92,"tags":117,"homepage":17,"download_link":120,"security_score":46,"vuln_count":47,"unpatched_count":13,"last_vuln_date":121,"fetched_at":28},"csv-importer","CSV Importer","0.4.2","Soflyy","https:\u002F\u002Fprofiles.wordpress.org\u002Fsoflyy\u002F","\u003Cp>This plugin imports posts from CSV (Comma Separated Value) files into your WordPress blog. It can prove extremely useful when you want to import a bunch of posts from an Excel document or the like – simply export your document into a CSV file and the plugin will take care of the rest.\u003C\u002Fp>\n\u003Ch4>Features\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Imports post title, body, excerpt, tags, date, categories etc.\u003C\u002Fli>\n\u003Cli>Supports custom fields, custom taxonomies and comments\u003C\u002Fli>\n\u003Cli>Deals with Word-style quotes and other non-standard characters using WordPress’ built-in mechanism (same one that normalizes your input when you write your posts)\u003C\u002Fli>\n\u003Cli>Columns in the CSV file can be in any order, provided that they have correct headings\u003C\u002Fli>\n\u003Cli>Multi-language support\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Drag & Drop to Import any CSV\u002FExcel\u002FXML with WP All Import Pro\u003C\u002Fh4>\n\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\u002Fw2J7JbXMHZo?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>\n\u003Cp>\u003Cstrong>WP All Import Pro\u003C\u002Fstrong> can import custom fields, taxonomies, WooCommerce, images and galleries, users, ACF, and everything else:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>Drag & Drop to Import Any File:\u003C\u002Fstrong> Give any CSV or XML to WP All Import, then drag and drop to map data from your file into WordPress.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Any Custom Post Type, Every Data Type:\u003C\u002Fstrong> Import data to custom post types, with support for WooCommerce, ACF, custom fields, taxonomies, and everything else.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Import Images & Galleries:\u003C\u002Fstrong> Images can be uploaded, downloaded, or matched to media already in WordPress. Full support for WooCommerce product images and variation galleries.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Import Files from URL:\u003C\u002Fstrong> Download and import files from external websites, even if they are password protected. URL imports are can be re-run to add, edit, and delete posts.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Scheduled Imports:\u003C\u002Fstrong> WP All Import Pro can check periodically check a file for updates and then add, update, or delete to the imported posts accordingly.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Developer Friendly:\u003C\u002Fstrong> Pass data through custom PHP functions. For example, use something like [my_function( {user_email[1]} )] in your template, to pass the value of {user_email[1]} to my_function and display whatever it returns.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Priority Support:\u003C\u002Fstrong> Personal support from our team of expert developers with over a decade of experience importing and exporting WordPress data.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>90 Day Money Back Guarantee:\u003C\u002Fstrong> Not 100% happy? Let us know, and we’ll promptly send you a refund. No questions asked.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Check out \u003Ca href=\"https:\u002F\u002Fwww.wpallimport.com\u002F?utm_source=import-plugin-free&utm_medium=readme&utm_campaign=upgrade-to-pro\" rel=\"nofollow ugc\">WP All Import\u003C\u002Fa> today.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>\u003Ca href=\"https:\u002F\u002Fwww.wpallimport.com\u002Fimport-wordpress-csv-xml-excel\u002F?utm_source=import-plugin-free&utm_medium=readme&utm_campaign=upgrade-to-pro\" rel=\"nofollow ugc\">Import any CSV\u002FExcel\u002FXML with WP All Import Pro\u003C\u002Fa>.\u003C\u002Fstrong>\u003C\u002Fli>\n\u003Cli>Need to \u003Ca href=\"http:\u002F\u002Fwww.wpallimport.com\u002Fwoocommerce-product-import\u002F?utm_source=import-plugin-free&utm_medium=readme&utm_campaign=upgrade-to-pro\" rel=\"nofollow ugc\">import XML and CSV to WooCommerce\u003C\u002Fa>? Check out our WooCommerce add-on.\u003C\u002Fli>\n\u003Cli>How to export WordPress to CSV? Drag & drop to \u003Ca href=\"http:\u002F\u002Fwww.wpallimport.com\u002Fexport-wordpress\u002F?utm_source=import-plugin-free&utm_medium=readme&utm_campaign=upgrade-to-pro\" rel=\"nofollow ugc\">export any custom post type from WordPress\u003C\u002Fa> (and everything else) to a custom CSV, Excel, or XML with WP All Export Pro.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Usage\u003C\u002Fh3>\n\u003Cp>Click on the CSV Importer link on your WordPress admin page, choose the file you would like to import and click Import. The \u003Ccode>examples\u003C\u002Fcode> directory inside the plugin’s directory contains several files that demonstrate how to use the plugin. The best way to get started is to import one of these files and look at the results.\u003C\u002Fp>\n\u003Cp>CSV is a tabular format that consists of rows and columns. Each row in a CSV file represents a post; each column identifies a piece of information that comprises a post.\u003C\u002Fp>\n\u003Ch4>Basic post information\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>\u003Ccode>csv_post_title\u003C\u002Fcode> – title of the post\u003C\u002Fli>\n\u003Cli>\u003Ccode>csv_post_post\u003C\u002Fcode> – body of the post\u003C\u002Fli>\n\u003Cli>\u003Ccode>csv_post_type\u003C\u002Fcode> – \u003Ccode>post\u003C\u002Fcode>, \u003Ccode>page\u003C\u002Fcode> or a custom post type.\u003Cbr \u002F>\n\u003Cstrong>New in version 0.3.2\u003C\u002Fstrong>\u003Cbr \u002F>\nIn prior versions, importing rows as pages could be specified on a per-file basis using the plugins UI. In 0.3.2, \u003Ccode>csv_post_type\u003C\u002Fcode> column was added to support custom post types as well.\u003Cbr \u002F>\nRefer to the WordPress \u003Ca href=\"https:\u002F\u002Fcodex.wordpress.org\u002FCustom_Post_Types\" rel=\"nofollow ugc\">documentation on custom post types\u003C\u002Fa> for more info on how to set up custom post types.\u003C\u002Fli>\n\u003Cli>\u003Ccode>csv_post_excerpt\u003C\u002Fcode> – post excerpt\u003C\u002Fli>\n\u003Cli>\u003Ccode>csv_post_categories\u003C\u002Fcode> – a comma separated list of category names or ids.\u003Cbr \u002F>\n\u003Cstrong>New in version 0.3.5\u003C\u002Fstrong>\u003Cbr \u002F>\nIt’s also possible to assign posts to non-existing subcategories, using > to denote category relationships, e.g. \u003Ccode>Animalia > Chordata > Mammalia\u003C\u002Fcode>. If any of the categories in the chain does not exist, the plugin will automatically create it. It’s also possible to specify the parent category using an id, as in \u003Ccode>42 > Primates > Callitrichidae\u003C\u002Fcode>, where \u003Ccode>42\u003C\u002Fcode> is an existing category id.\u003C\u002Fli>\n\u003Cli>\u003Ccode>csv_post_tags\u003C\u002Fcode> – a comma separated list of tags.\u003C\u002Fli>\n\u003Cli>\u003Ccode>csv_post_date\u003C\u002Fcode> – about any English textual description of a date and time.\u003Cbr \u002F>\nFor example, \u003Ccode>now\u003C\u002Fcode>, \u003Ccode>11\u002F16\u002F2009 0:00\u003C\u002Fcode>, \u003Ccode>1999-12-31 23:55:00\u003C\u002Fcode>, \u003Ccode>+1 week\u003C\u002Fcode>, \u003Ccode>next Thursday\u003C\u002Fcode>, \u003Ccode>last year\u003C\u002Fcode> are all valid descriptions. For technical details, consult PHP’s \u003Ccode>strtotime()\u003C\u002Fcode> function \u003Ca href=\"http:\u002F\u002Fphp.net\u002Fmanual\u002Fen\u002Ffunction.strtotime.php\" rel=\"nofollow ugc\">documentation\u003C\u002Fa>.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Custom fields\u003C\u002Fh4>\n\u003Cp>Any column that doesn’t start with \u003Ccode>csv_\u003C\u002Fcode> is considered to be a custom field name. The data in that column will be imported as the custom fields value.\u003C\u002Fp>\n\u003Ch4>General remarks\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>WordPress pages \u003Ca href=\"https:\u002F\u002Fcodex.wordpress.org\u002FPages\" rel=\"nofollow ugc\">don’t have categories or tags\u003C\u002Fa>.\u003C\u002Fli>\n\u003Cli>Most columns are optional. Either \u003Ccode>csv_post_title\u003C\u002Fcode>, \u003Ccode>csv_post_post\u003C\u002Fcode> or \u003Ccode>csv_post_excerpt\u003C\u002Fcode> are sufficient to create a post. If all of these columns are empty in a row, the plugin will skip that row.\u003C\u002Fli>\n\u003Cli>The plugin will attempt to reuse existing categories or tags; if an existing category or tag cannot be found, the plugin will create it.\u003C\u002Fli>\n\u003Cli>To specify a category that has a greater than sign (>) in the name, use the HTML entity \u003Ccode>>\u003C\u002Fcode>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Advanced usage\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>\u003Ccode>csv_post_author\u003C\u002Fcode> – numeric user id or login name. If not specified or user does not exist, the plugin will assign the posts to the user performing the import.\u003C\u002Fli>\n\u003Cli>\u003Ccode>csv_post_slug\u003C\u002Fcode> – post slug used in permalinks.\u003C\u002Fli>\n\u003Cli>\u003Ccode>csv_post_parent\u003C\u002Fcode> – post parent id.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Custom taxonomies\u003C\u002Fh3>\n\u003Cp>\u003Cstrong>New in version 0.3.0\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Once custom taxonomies are set up in your theme’s functions.php file or by using a 3rd party plugin, \u003Ccode>csv_ctax_(taxonomy name)\u003C\u002Fcode> columns can be used to assign imported data to the taxonomies.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Non-hierarchical taxonomies\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>The syntax for non-hierarchical taxonomies is straightforward and is essentially the same as the \u003Ccode>csv_post_tags\u003C\u002Fcode> syntax.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Hierarchical taxonomies\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>The syntax for hierarchical taxonomies is more complicated. Each hierarchical taxonomy field is a tiny two-column CSV file, where \u003Cem>the order of columns matters\u003C\u002Fem>. The first column contains the name of the parent term and the second column contains the name of the child term. Top level terms have to be preceded either by an empty string or a 0 (zero).\u003C\u002Fp>\n\u003Cp>Sample \u003Ccode>examples\u002Fcustom-taxonomies.csv\u003C\u002Fcode> file included with the plugin illustrates custom taxonomy support. To see how it works, make sure to set up custom taxonomies from \u003Ccode>functions.inc.php\u003C\u002Fcode>.\u003C\u002Fp>\n\u003Cp>Make sure that the quotation marks used as text delimiters in \u003Ccode>csv_ctax_\u003C\u002Fcode> columns are regular ASCII double quotes, not typographical quotes like “ (U+201C) and ” (U+201D).\u003C\u002Fp>\n\u003Ch3>Comments\u003C\u002Fh3>\n\u003Cp>\u003Cstrong>New in version 0.3.1\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>An example file with comments is included in the \u003Ccode>examples\u003C\u002Fcode> directory. In short, comments can be imported along with posts by specifying columns such as \u003Ccode>csv_comment_*_author\u003C\u002Fcode>, \u003Ccode>csv_comment_*_content\u003C\u002Fcode> etc, where * is a comment ID number. This ID doesn’t go into WordPress. It is only there to have the connection information in the CSV file.\u003C\u002Fp>\n\u003Ch3>Credits\u003C\u002Fh3>\n\u003Cp>This plugin uses \u003Ca href=\"http:\u002F\u002Fcode.google.com\u002Fp\u002Fphp-csv-parser\u002F\" rel=\"nofollow ugc\">php-csv-parser\u003C\u002Fa> by Kazuyoshi Tlacaelel. It was inspired by JayBlogger’s \u003Ca href=\"http:\u002F\u002Fwww.jayblogger.com\u002Fthe-birth-of-my-first-plugin-import-csv\u002F\" rel=\"nofollow ugc\">CSV Import\u003C\u002Fa> plugin.\u003C\u002Fp>\n\u003Cp>Contributors:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Denis Kobozev (original author)\u003C\u002Fli>\n\u003Cli>Kevin Hagerty (post_author support)\u003C\u002Fli>\n\u003Cli>Edir Pedro (root category option and tableless HTML markup)\u003C\u002Fli>\n\u003Cli>Frank Loeffler (comments support)\u003C\u002Fli>\n\u003Cli>Micah Gates (subcategory syntax)\u003C\u002Fli>\n\u003Cli>David Hollander (deprecation warnings, linebreak handling)\u003C\u002Fli>\n\u003C\u002Ful>\n","Import posts from CSV files into WordPress.",4000,218431,28,"2025-12-05T21:16:00.000Z","3.1",[21,23,118,119,71],"import","import-csv","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fcsv-importer.0.4.2.zip","2023-12-05 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":132,"num_ratings":133,"last_updated":134,"tested_up_to":67,"requires_at_least":135,"requires_php":92,"tags":136,"homepage":140,"download_link":141,"security_score":46,"vuln_count":13,"unpatched_count":13,"last_vuln_date":27,"fetched_at":28},"export-wp-users-xml-csv","WP All Export – User Export Add-On","1.0.2","WP All Import","https:\u002F\u002Fprofiles.wordpress.org\u002Fwpallimport\u002F","\u003Cp>Easily export users to CSV, Excel, or XML files with the User Export Add-On for \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fwp-all-export\u002F\" rel=\"ugc\">WP All Export\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cp>Select and customize your user export columns.\u003C\u002Fp>\n\u003Cp>Use our powerful filters to export only the users that you need.\u003C\u002Fp>\n\u003Cp>Run your user exports on-demand, or schedule them to run automatically and integrate them with 1000s of external applications using Zapier.\u003C\u002Fp>\n\u003Cp>Export users to any spreadsheet software, bulk edit them, and then import your changes back into WordPress using \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fwp-all-import\u002F\" rel=\"ugc\">WP All Import\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cp>Export all user fields, including custom fields created by third-party plugins.\u003C\u002Fp>\n\u003Cp>Need more power? Use our embedded functions to modify your user data on the fly.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>\u003Ca href=\"https:\u002F\u002Fwww.wpallimport.com\u002Ftry-export-free\u002F\" rel=\"nofollow ugc\">Click here to try WP All Export right now\u003C\u002Fa>.\u003C\u002Fstrong>\u003C\u002Fp>\n\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\u002FA8aMcV7kKbc?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>\n\u003Ch4>Easily Customize Your User Export Columns\u003C\u002Fh4>\n\u003Cp>When you export user data from WordPress, you don’t want to have to manually edit it afterward. That’s how mistakes are made.\u003C\u002Fp>\n\u003Cp>With our plugin, you can export user data exactly the way you want, no additional editing required.\u003C\u002Fp>\n\u003Cp>Quickly select your export fields using our Drag & Drop interface. Rename fields, combine them, and rearrange their order. Create entirely new user fields using embedded functions that give you the power of custom programming, including the use of conditional logic, without the need to be an actual programmer.\u003C\u002Fp>\n\u003Ch4>A Powerful Filter for WordPress User Exports\u003C\u002Fh4>\n\u003Cp>Need to filter your user exports using any combination of more than 30 user fields?\u003C\u002Fp>\n\u003Cp>No problem. Our plugin lets you apply filters to fields added by 3rd-party plugins.\u003C\u002Fp>\n\u003Cp>But what really separates this plugin from others is that we allow you to create nested filters (equivalent to using parentheses). While our competitors limit you to simple AND\u002FOR combinations, we let you build more advanced filters like “Condition-A OR (Condition-B AND Condition-C)”.\u003C\u002Fp>\n\u003Cp>This means that you can export exactly the users that you need.\u003C\u002Fp>\n\u003Ch4>Export Users to CSV, Excel, and XML\u003C\u002Fh4>\n\u003Cp>Output your user exports in whatever file format you desire.\u003C\u002Fp>\n\u003Cp>If you’re working with Excel, we support both the .xls and .xlsx formats.\u003C\u002Fp>\n\u003Cp>If you want to export users to XML, you’re in for a treat. You can create simple XML feeds in seconds. But what if you need to export users to far more advanced XML feeds?\u003C\u002Fp>\n\u003Cp>Fortunately, you can fully customize your XML feed the same way that you can customize any other type of user export.\u003C\u002Fp>\n\u003Ch4>Bulk Edit Your WordPress User Data\u003C\u002Fh4>\n\u003Cp>Need to make large-scale changes to your WordPress user data? Dreading an all-nighter making those changes through the WordPress interface?\u003C\u002Fp>\n\u003Cp>Fear not. Just export the users that you want to change, then edit them in a spreadsheet application of your choice, where you can perform bulk actions like search-and-replace, copy-and-paste, etc., in seconds.\u003C\u002Fp>\n\u003Cp>Finally, import your changes back into WordPress with just a few clicks using WP All Import.\u003C\u002Fp>\n\u003Cp>How is this possible? Because our import and export plugins understand each other, meaning they take care of any necessary configurations between them, letting you do what’s natural at night: sleep.\u003C\u002Fp>\n\u003Ch4>Export Users on a Schedule\u003C\u002Fh4>\n\u003Cp>Are you routinely exporting users to feed an external system? If so, don’t burden yourself with repetitive manual tasks. Schedule your user exports to run exactly when you need them.\u003C\u002Fp>\n\u003Cp>Create these schedules manually using cron jobs on your server or through our plugin interface using our automatic scheduling service.\u003C\u002Fp>\n\u003Cp>Either way, just set up your user exports once and forget about them.\u003C\u002Fp>\n\u003Ch4>Integrate Your User Exports with External Applications\u003C\u002Fh4>\n\u003Cp>The challenge with feeding user data to external systems isn’t just running your user exports on a schedule. You also need a way to send the data where it’s needed.\u003C\u002Fp>\n\u003Cp>Enter Zapier, a leading integration platform. Want to send your user data to Dropbox, Google Drive, or other file hosting services? No problem. Want to attach it to an email? Easy. Want to integrate with marketing platforms like MailChimp? That’s why Zapier exists.\u003C\u002Fp>\n\u003Ch4>The Power of Programming Without Being a Programmer\u003C\u002Fh4>\n\u003Cp>Sometimes you need a little added control when you export users, something you can’t implement through a simple point-and-click interface. Maybe it’s just a simple if\u002Fthen rule, some filters, or you need to process or combine some data while it’s being exported.\u003C\u002Fp>\n\u003Cp>WP All Export let’s you get as advanced as you need to be. You don’t need to be a PHP expert to work like one. With simple to use filters, easy drag and drop custom fields, and support for simple PHP snippets, you can do whatever you need and get back to work. And if you need help, our support team is ready and waiting.\u003C\u002Fp>\n\u003Ch4>Free Version of the Export Users Add-On\u003C\u002Fh4>\n\u003Cp>With the free version of the Export Users Add-On, you can:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\n\u003Cp>Export users to CSV or simple XML file formats\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Export all standard user fields\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Customize user fields\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Export user data, bulk edit it in a spreadsheet, then import those changes back into WordPress with \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fwp-all-import\u002F\" rel=\"ugc\">WP All Import\u003C\u002Fa>\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Migrate user data from one WordPress site to another\u003C\u002Fp>\n\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Premium Version of WP All Export and the Export Users Add-On\u003C\u002Fh4>\n\u003Cp>With the premium version of these plugins, you can do everything that you can do with the free version, plus:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\n\u003Cp>Export user data directly to Excel (.xls and .xlsx)\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Export users to XML using advanced custom feeds\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Export all user fields, including custom fields added by 3rd-party plugins\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Filter your user exports\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Export users automatically on a schedule\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Integrate your user exports with external applications using Zapier\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Pass your export data through PHP functions\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Get guaranteed technical support via e-mail (see below)\u003C\u002Fp>\n\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Premium Support\u003C\u002Fh4>\n\u003Cp>\u003Ca href=\"http:\u002F\u002Fwww.wpallimport.com\u002Fupgrade-to-wp-all-export-pro\u002F?utm_source=export-users-addon-free&utm_medium=readme&utm_campaign=premium-support\" rel=\"nofollow ugc\">Upgrade to the Pro edition of WP All Export\u003C\u002Fa> for premium support provided by our team of import\u002Fexport specialists.\u003C\u002Fp>\n\u003Cp>We have been answering hundreds of support requests per week for years. Whatever it is you’re trying to do, chances are we’ve seen it before and know exactly how to handle it.\u003C\u002Fp>\n\u003Cp>E-mail: support@wpallimport.com\u003C\u002Fp>\n\u003Ch4>Related Plugins\u003C\u002Fh4>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fwp-all-export\u002F\" rel=\"ugc\">Export any WordPress data to XML\u002FCSV\u003C\u002Fa>\u003Cbr \u002F>\n\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fwp-all-import\u002F\" rel=\"ugc\">Import any XML or CSV File to WordPress\u003C\u002Fa>\u003Cbr \u002F>\n\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fwoocommerce-xml-csv-product-import\u002F\" rel=\"ugc\">Import Products from any XML or CSV to WooCommerce\u003C\u002Fa>\u003Cbr \u002F>\n\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fproduct-export-for-woocommerce\u002F\" rel=\"ugc\">Export Products to CSV\u002FXML for WooCommerce\u003C\u002Fa>\u003Cbr \u002F>\n\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fcustom-product-tabs-wp-all-import-add-on\u002F\" rel=\"ugc\">Custom Product Tabs Add-on\u003C\u002Fa>\u003Cbr \u002F>\n\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Forder-export-for-woocommerce\u002F\" rel=\"ugc\">Export Orders to CSV\u002FXML for WooCommerce\u003C\u002Fa>\u003C\u002Fp>\n","Drag & drop to export users and all user data to a completely custom CSV, Excel, or XML of any format. Supports roles, metadata, custom fields, wi &hellip;",2000,60136,72,7,"2026-01-30T13:43:00.000Z","5.2",[21,23,137,138,139],"export-users","user-export","xml","http:\u002F\u002Fwww.wpallimport.com\u002Ftour\u002Fexport-wordpress-users\u002F?utm_source=export-users-addon-free&utm_medium=wp-plugins-page&utm_campaign=upgrade-to-pro","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fexport-wp-users-xml-csv.1.0.2.zip",{"attackSurface":143,"codeSignals":157,"taintFlows":164,"riskAssessment":165,"analyzedAt":173},{"hooks":144,"ajaxHandlers":153,"restRoutes":154,"shortcodes":155,"cronEvents":156,"entryPointCount":13,"unprotectedCount":13},[145,151],{"type":146,"name":147,"callback":148,"file":149,"line":150},"action","twig_anything_register_custom_formats","closure","twig-anything-csv.php",19,{"type":146,"name":152,"callback":148,"file":149,"line":114},"admin_notices",[],[],[],[],{"dangerousFunctions":158,"sqlUsage":159,"outputEscaping":161,"fileOperations":13,"externalRequests":13,"nonceChecks":13,"capabilityChecks":13,"bundledLibraries":163},[],{"prepared":13,"raw":13,"locations":160},[],{"escaped":13,"rawEcho":13,"locations":162},[],[],[],{"summary":166,"deductions":167},"The \"twig-anything-csv\" plugin v1.1 exhibits a strong security posture based on the provided static analysis results. The absence of any identified dangerous functions, raw SQL queries, unescaped output, file operations, or external HTTP requests is commendable. Furthermore, the zero count for taint analysis flows with unsanitized paths indicates a robust approach to preventing common injection vulnerabilities. The plugin also demonstrates good practice by lacking any AJAX handlers, REST API routes, shortcodes, or cron events that could serve as potential entry points for attackers, especially with a reported zero unprotected entry points. This clean bill of health in the code analysis is further reinforced by a complete absence of any recorded vulnerabilities, including CVEs, across all severity levels. \n\nHowever, the complete lack of explicit capability checks and nonce checks is a notable concern, even in the absence of direct entry points. While the current design may not expose these elements, any future expansion or modification of the plugin that introduces such features without proper authorization and security checks could introduce significant risks. The vulnerability history, while currently empty, is based on past performance and should not be taken as a guarantee of future security. The plugin's strengths lie in its minimal attack surface and seemingly clean code. Its primary weakness, inferred from the absence of checks, is the potential for security gaps if functionality is added without corresponding security controls.",[168,171],{"reason":169,"points":170},"Missing capability checks",5,{"reason":172,"points":170},"Missing nonce checks","2026-03-17T00:54:55.377Z",{"wat":175,"direct":180},{"assetPaths":176,"generatorPatterns":177,"scriptPaths":178,"versionParams":179},[],[],[],[],{"cssClasses":181,"htmlComments":182,"htmlAttributes":183,"restEndpoints":184,"jsGlobals":185,"shortcodeOutput":186},[],[],[],[],[],[]]