mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
6 lines
211 B
Text
6 lines
211 B
Text
add_filter( 'woocommerce_account_downloads_columns', 'wc_rename_downloads_page_columns' );
|
|
|
|
function wc_rename_downloads_page_columns( $cols ) {
|
|
$cols['download-remaining'] = 'New Title';
|
|
return $cols;
|
|
}
|