Returns whether a particular element is in list item scope.
Description
See also
Parameters
$tag_name
stringrequired- Name of tag to check.
Source
switch ( $node->node_name ) {
case 'HTML':
return false;
}
if ( in_array( $node->node_name, $termination_list, true ) ) {
return false;
}
}
User Contributed Notes
You must log in before being able to contribute a note or feedback.