Posts

Why Only the URL Shows while sharing the link from blogger

### Why Only the URL Shows   When you share a link from your Blogger blog on Facebook and only the URL appears, it’s likely because Facebook can’t find the necessary metadata to create a rich preview. This metadata, known as Open Graph (OG) tags, includes the title, description, and image that make the link look appealing. Without these tags, Facebook shows just the URL. ### How to Fix It   To make the content visible, you’ll need to add OG tags to your Blogger template. Here’s a simple way:   1. Go to your Blogger dashboard, click “Theme,” then “Edit HTML.”   2. Add the Facebook XML namespace to the HTML tag: `xmlns:og='http://ogp.me/ns#'`.   3. Insert OG meta tags in the `<head>` section, using code that adjusts for posts and the blog homepage. For example:      - For posts: Use `data:view.title` for the title and ensure an image is set.      - For the homepage: Use `data:blog.title` and `d...
Recent posts