Hi,
How can I print custom field value or content value in Masonry_entries.php ?
(or maybe ACF plugin text value)?
Thanks
M
resolved :)
about line 690:
$this->loop[$key]['linkedin'] = get_field( "linkedin-url", $id );
and then to print the value of ACF field about line 580:
$items .= "<div class='social-icons'>";
$items .= $linkedin;
$items .= "</div>";