um_account_shortcode_args_filter
Hook type
Filter
Description
Account Shortcode Arguments
Parameters
$args
(array) Shortcode Arguments
Usage
add_filter( 'um_account_shortcode_args_filter', 'function_name', 10, 1 );
Examples
<?php
add_filter( 'um_account_shortcode_args_filter', 'my_account_shortcode_args', 10, 1 );
function my_account_shortcode_args( $args ) {
// your code here
return $args;
}
?>
Change Log
Since: 2.0
Source
um_account_shortcode_args_filter is located in includes/core/class-account.php::line 159