badge badge An average of 4.5 stars for ratings on wp.org! Download free version
Exclusive offer! For a limited time we're offering 25% discount for Shared Files PRO.
Use the coupon code WEBSALE25 to redeem this offer!
If you have already purchased a license, you can purchase a renewal using the same coupon.

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' );