Skip to content

liveblog_features filter appears not to run #602

@jonathanstegall

Description

@jonathanstegall

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    type: questionFurther information is requested

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions