-
Notifications
You must be signed in to change notification settings - Fork 125
Open
Labels
type: questionFurther information is requestedFurther information is requested
Milestone
Description
I've been trying to disable the hashtags feature using variations of this code:
add_filter( 'liveblog_features', 'mytest_liveblog_features', 1000, 1 );
function mytest_liveblog_features( $features ) {
$features = array( 'commands', 'emojis', 'authors' );
error_log( 'features is ' . print_r( $features, true ) );
return $features;
}
I tried unsetting hashtags if it was the value in a foreach, which also failed. I've also tried using various priority numbers (-1, 0, 1, 10, 1000) with no change.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
type: questionFurther information is requestedFurther information is requested