Hot answers tagged facebook
3
First, this isn't a WordPress specific question, it's a Facebook question.
Secondly, Facebook caches pages, they don't crawl them on every submission. If you have a URL that has already been submitted to Facebook before, then they will have already crawled it for the OG data once before, and saved it to their cache. If you later change the OG data, they ...
2
First line of the codex for get_content:
Displays the contents of the current post. This template tag must be
within The_Loop.
Also, this line:
<meta property="og:description" content="<?php string_limit_words(the_content(), 15);" ?> />
would need to get_the_content(), as the_content() will output, and you need to return.
<meta ...
1
Consider this snippet here to accomplish your task. If you add it to your functions.php file, the Open Graph tags will be populated automatically as part of the wp_head action.
Only top voted, non community-wiki answers of a minimum length are eligible
