PHP Actions
If you need a new kind of action or filter, just send us a message and we’ll do our best to implement it.
shared_files_file_card_after_date
This action is fired after the date on the file card.
function my_function() {
echo '<p>Testing</p>';
}
add_action( 'shared_files_file_card_after_date', 'my_function' );
shared_files_file_card_after_download_counter
This action is fired after the download counter on the file card.
function my_function() {
echo '<p>Testing</p>';
}
add_action( 'shared_files_file_card_after_download_counter', 'my_function' );
shared_files_file_card_before_description
This action is fired before the description on the file card.
function my_function() {
echo '<p>Testing</p>';
}
add_action( 'shared_files_file_card_before_description', 'my_function' );
shared_files_file_card_after_description
This action is fired after the description on the file card.
function my_function() {
echo '<p>Testing</p>';
}
add_action( 'shared_files_file_card_after_description', 'my_function' );