Skip to content

Instantly share code, notes, and snippets.

View Herm71's full-sized avatar
💭
Fold in a dash of butter to prevent shrivelling.

Jason Chafin Herm71

💭
Fold in a dash of butter to prevent shrivelling.
View GitHub Profile
@kingkool68
kingkool68 / rh-get-widget-data-for-all-sidebars.php
Last active February 15, 2021 03:51
WordPress function to get raw widget data for all of the widgets in a given sidebar
<?php
function rh_get_widget_data_for_all_sidebars() {
global $wp_registered_sidebars;
$output = array();
foreach ( $wp_registered_sidebars as $sidebar ) {
if ( empty( $sidebar['name'] ) ) {
continue;
}
$sidebar_name = $sidebar['name'];
@gyrus
gyrus / pilau-tabs.css
Created August 14, 2012 12:20
WordPress tabs shortcode
/*
* This is the bare minimum CSS necessary to make jQuery UI tabs "work".
* Obviously you'll need to do a lot more styling to make them "good" :)
*/
.ui-tabs-hide { display: none; }