Home › Forums › General Issues › How to add field in file_get_html › Reply To: How to add field in file_get_html
This:
$name = get_post_meta($post->ID, 'company', true);
Should hold the value of an ACF-based or native meta key called ‘company’ if the post ID is being pulled. If it’s not working, I would try to echo out $post->ID to make sure it’s correct, if it is, double check the field name. If echo $name works, I’d look at the rest of your code as it’s not possible to know what’s in the include or what else is going on.
Think this:
$html = file_get_html("https://other-website-url.com/company/.$name.");
Is where your error is, for example. Likely should be something like:
$html = file_get_html("https://other-website-url.com/company/". $name);
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.