You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Switching to is_numeric to identify ID values from strings, since the blade template is always parsed as a string and is_string wasn't catching IDs.
FixesLog1x#44FixesLog1x#63
EHLOVader
added a commit
to EHLOVader/sage-directives
that referenced
this issue
Nov 3, 2021
Switching to is_numeric to identify ID values from strings, since the blade template is always parsed as a string and is_string wasn't catching IDs.
FixesLog1x#44FixesLog1x#63
@hasfield('my_field', 113)
render as
<?php if (get_field('my_field')[113]) : ?>
instead
<?php if (get_field('my_field', 113)) : ?>
The text was updated successfully, but these errors were encountered: