Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mdibrahimk48/75578510b2f10d2c3196d3127ee8953b to your computer and use it in GitHub Desktop.
Save mdibrahimk48/75578510b2f10d2c3196d3127ee8953b to your computer and use it in GitHub Desktop.
This jQuery code will help you to sorting the category column (On Load) on Woo Product Table by CodeAstrology Team.
<?php
/**
* Author: Ibrahim Khalil
* Desc: Category Columnwise Sorting (On Load) on woo product table.
* Date: 03.08.2023
*/
add_action('wp_footer','wpt_custom_category_colwise_sorting_on_load');
function wpt_custom_category_colwise_sorting_on_load(){
?>
<script>
jQuery(function($) {
'use strict';
$(document).ready(function() {
setTimeout(function(){
$('th.wpt_category').trigger('click');
},500);
});
});
</script>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment