المشاركات 330 |
+التقييم 8 |
تاريخ التسجيل Feb 2021 |
الاقامة ايطاليا |
نظام التشغيل windows 8.1 |
رقم العضوية 2617 |
أفضل جواب - كتبه Mc Nabulsy
<script>
document.addEventListener('DOMContentLoaded', function() {
const mainContent = document.querySelector('.message-content');
if (!mainContent) return;
let featuredImage = null;
const attachments = document.querySelectorAll('.attachment-image');
if (attachments.length > 0) {
const img = attachments[0].querySelector('img');
if (img) featuredImage = img.src;
}
if (!featuredImage) {
const contentImages = mainContent.querySelectorAll('img:not(.smilie):not(.avatar)');
if (contentImages.length > 0) {
featuredImage = contentImages[0].src;
}
}
// إذا لم نجد أي صورة، نستخدم صورة افتراضية
if (!featuredImage) {
featuredImage = 'https://your-domain.com/path/to/default-image.jpg'; // ضع هنا رابط الصورة الخاصة بك
}
if (featuredImage) {
const absoluteImageUrl = new URL(featuredImage, window.location.origin).href;
updateMetaTag('og:image', absoluteImageUrl);
updateMetaTag('og:image:url', absoluteImageUrl);
updateMetaTag('og:image:secure_url', absoluteImageUrl);
updateMetaTag('twitter:image', absoluteImageUrl);
updateLinkTag('image_src', absoluteImageUrl);
}
});
function updateMetaTag(property, content) {
let meta = document.querySelector(`meta[property="${property}"]`) ||
document.querySelector(`meta[name="${property}"]`);
if (!meta) {
meta = document.createElement('meta');
if (property.startsWith('og:')) {
meta.setAttribute('property', property);
} else {
meta.setAttribute('name', property);
}
document.head.appendChild(meta);
}
meta.setAttribute('content', content);
}
function updateLinkTag(rel, href) {
let link = document.querySelector(`link[rel="${rel}"]`);
if (!link) {
link = document.createElement('link');
link.setAttribute('rel', rel);
document.head.appendChild(link);
}
link.setAttribute('href', href);
}
</script>
<script>
document.addEventListener('DOMContentLoaded', function() {
const mainContent = document.querySelector('.message-content');
if (!mainContent) return;
let featuredImage = null;
const attachments = document.querySelectorAll('.attachment-image');
if (attachments.length > 0) {
const img = attachments[0].querySelector('img');
if (img) featuredImage = img.src;
}
if (!featuredImage) {
const contentImages = mainContent.querySelectorAll('img:not(.smilie):not(.avatar)');
if (contentImages.length > 0) {
featuredImage = contentImages[0].src;
}
}
// إذا لم نجد أي صورة، نستخدم صورة افتراضية
if (!featuredImage) {
featuredImage = 'https://your-domain.com/path/to/default-image.jpg'; // ضع هنا رابط الصورة الخاصة بك
}
if (featuredImage) {
const absoluteImageUrl = new URL(featuredImage, window.location.origin).href;
updateMetaTag('og:image', absoluteImageUrl);
updateMetaTag('og:image:url', absoluteImageUrl);
updateMetaTag('og:image:secure_url', absoluteImageUrl);
updateMetaTag('twitter:image', absoluteImageUrl);
updateLinkTag('image_src', absoluteImageUrl);
}
});
function updateMetaTag(property, content) {
let meta = document.querySelector(`meta[property="${property}"]`) ||
document.querySelector(`meta[name="${property}"]`);
if (!meta) {
meta = document.createElement('meta');
if (property.startsWith('og:')) {
meta.setAttribute('property', property);
} else {
meta.setAttribute('name', property);
}
document.head.appendChild(meta);
}
meta.setAttribute('content', content);
}
function updateLinkTag(rel, href) {
let link = document.querySelector(`link[rel="${rel}"]`);
if (!link) {
link = document.createElement('link');
link.setAttribute('rel', rel);
document.head.appendChild(link);
}
link.setAttribute('href', href);
}
</script>
|
اضافة رد
|
ابحث عن اضافه او طريقه لتهيئة صوره مميزه للموضوع تظهر ع السوشيال ميديا
| أدوات الموضوع | |
|
| الموضوع | كاتب الموضوع | المنتدى | مشاركات | آخر مشاركة |
| مطلوب حل : الصوره لا تظهر اريد اضافه صوره افترضيه | abdoBayoumi70 | ركن مشاكل وطلبات المنتديات | 1 | 10-09-2021 04:57 PM |
| [Facebook] بالأرقام.. هكذا يسيطر فيس بوك على عالم السوشيال ميديا | هيلبرنت | ركن مواقع التواصل الإجتماعي | 0 | 12-16-2019 04:12 PM |
| [ ارشادات ] : كيف تتخلص من إدمان السوشيال ميديا؟ | هيلبرنت | الركن العام للمواضيع العامة | 0 | 10-18-2019 09:46 PM |
| كيف تبدأ في مجال السوشيال ميديا ؟ | هيلبرنت | ركن تقنيات محركات البحث سيو SEO | 0 | 08-15-2018 08:09 PM |
| طريقه اضافه رموز مشاعر فى الفيس بوك وعلى التعليقات ، طريقه اضافه ابتسامات للفيس بوك | Oussama Kllay | ركن مواقع التواصل الإجتماعي | 0 | 10-15-2015 04:59 PM |