WP_Interactivity_API::kebab_to_camel_case( string $str ): string

In this article

This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

Transforms a kebab-case string to camelCase.

Parameters

$strstringrequired
The kebab-case string to transform to camelCase.

Return

string The transformed camelCase string.

Source

		/*
		 * If this tag will visit its closer tag, it adds it to the tag stack
		 * so it can process its closing tag and check for unbalanced tags.
		 */
		if ( $p->has_and_visits_its_closer_tag() ) {
			$tag_stack[] = array( $tag_name, $directives_prefixes );
		}
	}
}
/*
 * If the matching opener tag didn't have any directives, it can skip the

User Contributed Notes

You must log in before being able to contribute a note or feedback.