Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

umerfayyaz's avatar

Facebook meta tags show old title and description

Hi I am facing an issue in meta tags of facebook. After adding new meta tags facebook sharing debugger show old tags. even i check doing a post it show old meta tags here it is new facebook meta tags

<meta property="og:url"                content="https://escuela-ray-bolivar-sosa.com/student/todo_concurso" />
    <meta property="og:type"               content="article" />
    <meta property="og:title"              content="When Great Minds Don’t Think Alike" />
    <meta property="og:description"        content="How much does culture influence creative thinking?" />
    <meta property="og:image"              content="http://static01.nyt.com/images/2015/02/19/arts/international/19iht-btnumbers19A/19iht-btnumbers19A-facebookJumbo-v2.jpg" />
    
    

but when i check in Facebook sharing debugger it didnot show this new title description and image

https://i.postimg.cc/Wz0rJLK0/Screenshot-1.png

it show og:title Escuela de Escritura Creativa og:image https://escuela-ray-bolivar-sosa.com/storage/uploads/1637077682-escritor-facebook.jpg og:description "Conecta con cientos de lectores, recibe feedback de cientos de lectores y consigue la repercusión mediática que necesitan tus obras para convertirse en virales."

clear the cache also done

0 likes
12 replies
LaryAI's avatar
Level 58

It seems like the Facebook crawler is still caching the old meta tags. You can try the following solutions:

  1. Use the Facebook Sharing Debugger to scrape the new meta tags manually. Go to the debugger tool, enter the URL of the page you want to scrape, and click "Scrape Again". This should update the cached meta tags.

  2. Add a timestamp or a random string to the end of the URL to force Facebook to fetch the page again. For example, change the URL from https://escuela-ray-bolivar-sosa.com/student/todo_concurso to https://escuela-ray-bolivar-sosa.com/student/todo_concurso?timestamp=123456. This should make Facebook think that it's a new page and fetch the new meta tags.

  3. Check if there are any other meta tags on the page that might be conflicting with the new ones. For example, if there is a <meta property="og:title"> tag with a different value, Facebook might be using that instead of the new one. Make sure there are no conflicting meta tags on the page.

  4. Wait for some time and try again. Sometimes it takes a while for Facebook to update its cache.

umerfayyaz's avatar

this is also an issue may be you can face in future

tisuchi's avatar

@umerfayyaz It's not an issue with FB. Your code does not reflect in your site.

Looking at your source code, I found this, which is not matched with your current snippet (but exactly matched with fb scrapper).

Make sure that your page renders your changed code.

umerfayyaz's avatar

@tisuchi found the issue actually due to inactive the status it return to home page thats why

Please or to participate in this conversation.