Skip to content

Instantly share code, notes, and snippets.

View mariusrazoux's full-sized avatar
🔥

Marius Razoux mariusrazoux

🔥
  • Pretty much everywhere
View GitHub Profile
@tybruffy
tybruffy / get_meta_values.php
Created August 16, 2013 20:52
Get all distinct values of a meta field in Wordpress
function _get_all_meta_values($key) {
global $wpdb;
$result = $wpdb->get_col(
$wpdb->prepare( "
SELECT DISTINCT pm.meta_value FROM {$wpdb->postmeta} pm
LEFT JOIN {$wpdb->posts} p ON p.ID = pm.post_id
WHERE pm.meta_key = '%s'
AND p.post_status = 'publish'
ORDER BY pm.meta_value",
$key
@adilapapaya
adilapapaya / README
Last active June 27, 2020 11:58
Export Table Data to CSV using Javascript
Example code for exporting data in a table to a csv file.