Skip to content

activitypub_litespeed_cache_htaccess_file

github-actions[bot] edited this page Oct 27, 2025 · 1 revision

Filter the htaccess file path.

Auto-generated Example

/**
 * Filter the htaccess file path.
 *
 * @param string|false $htaccess_file 
 * @return string|false The filtered value.
 */
function my_activitypub_litespeed_cache_htaccess_file_callback( string|false $htaccess_file ) {
    // Your code here.
    return $htaccess_file;
}
add_filter( 'activitypub_litespeed_cache_htaccess_file', 'my_activitypub_litespeed_cache_htaccess_file_callback' );

Parameters

  • string|false $htaccess_file The htaccess file path.

Files

\apply_filters( 'activitypub_litespeed_cache_htaccess_file', $htaccess_file )

← All Hooks

Users

Developers

Clone this wiki locally