كيفية إضافة مخطط الأسئلة الشائعة التلقائي + قالب نمط الأكورديون في بلوجر

نشرت: 2023-12-25

هل تريد عرض قسم الأسئلة الشائعة في مدونة Blogger الخاصة بك وتبحث عن قالب على شكل الأكورديون، فأنت في المكان الصحيح.

في هذه المقالة، سأوضح لك كيف يمكنك إضافة قسم الأسئلة الشائعة حول Accordion إلى موقع Blogger الخاص بك وإنشاء مخطط الأسئلة الشائعة تلقائيًا.

ولكن، قبل ذلك، دعونا نفهم سريعًا ما هو مخطط الأسئلة الشائعة؟

يشير مخطط الأسئلة الشائعة إلى نوع محدد من ترميز البيانات المنظمة التي يمكن إضافتها إلى HTML لموقع الويب لتزويد محركات البحث بمعلومات حول الأسئلة المتداولة (FAQs) والإجابات المقابلة لها.

يعتبر مخطط الأسئلة الشائعة بمثابة أداة خاصة لمواقع الويب. فهو يساعد محركات البحث على فهم محتوى الصفحة بشكل أكثر فعالية، مما يسمح لها بعرض المقتطفات الغنية أو المقتطفات المميزة في نتائج البحث.

على سبيل المثال ، إذا كان موقع الويب الخاص بك يدور حول الديناصورات وسأل أحد الأشخاص Google، " ماذا أكل تي ريكس؟" يمكن أن يؤدي مخطط الأسئلة الشائعة إلى ظهور هذه الإجابة مباشرة في نتائج البحث! إنها طريقة رائعة لمشاركة المعلومات.

كيفية إضافة قسم الأسئلة الشائعة حول الأكورديون في مدونة بلوجر؟

لإضافة قسم الأسئلة الشائعة حول Accordion إلى موقع Blogger الخاص بك، افتح أولاً إحدى مشاركات مدونتك في وضع عرض HTML.

الآن استخدم الكود أدناه واستبدل السؤال والجواب عليه.

 <style> .faq-container { max-width: 800px; margin: 24px auto; } details summary { cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 14px 24px; background: #2f3337; color: #fff; font-family:system-ui; font-weight:600; user-select: none; transition: all 120ms ease; } details summary::after { content: ""; display: inline-block; margin-left: 8px; height: 24px; width: 24px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E") no-repeat center center; } details .content img { width: 100%; max-height: 400px; object-fit: cover; margin: 5px 0; box-shadow: 0 4px 8px -2px rgba(0, 0, 0, 0.2); } details .content { padding: 10px 16px; line-height: 1.8; margin-top: -10px; color:black; } details { background: #edf2f4; border-radius: 4px; overflow: hidden; margin-bottom: 12px; } details summary::-webkit-details-marker { display: none; } details[open] summary { background: #204ecf; margin-bottom: 10px; } </style> <div class="faq-container"> <details open> <summary>What Is Link Building?</summary> <div class="content"> Link building is the practice of building one-way hyperlinks (also known as “backlinks”) to a website with the goal of improving search engine visibility. </div> </details> <details> <summary>Why Are Links So Important?</summary> <div class="content"> Links are crucial online. They: <ul> <li>Connect Pages: Like pathways between web pages.</li> <li>Boost Google Ranking: More links can make a site show up higher in searches.</li> <li>Build Trust: Links from reputable sites make a page seem more reliable.</li> <li>Bring Traffic: Links can bring people to your site.</li> <li>Simplify Browsing: They make it easy to move around the internet.</li> </ul> </div> </details> <details> <summary>How to Find High-Quality Links?</summary> <div class="content"> To find high-quality links, prioritize creating valuable and relevant content on your website. Content that is informative, engaging, and solves a problem for your audience is more likely to attract organic links. <img src="https://www.abetterlemonadestand.com/wp-content/uploads/2017/06/How-to-Build-Backlinks.jpg" alt=""> Additionally, conduct competitor analysis using tools like Ahrefs or Moz to identify where your competitors are getting links. This insight can guide your link-building strategy and help you target similar high-authority sources. </div> </details> </div>

الآن احفظ الصفحة وسيتم إضافة قسم الأسئلة الشائعة حول الأكورديون إلى موقع Blogger.

الآن، إذا كنت تريد إضافة مخطط الأسئلة الشائعة لهذا الغرض، فيمكنك استخدام الكود الموجود أسفل الكود أعلاه مباشرةً.

 <script> function generateFAQSchema() { const faqContainer = document.querySelector('.faq-container'); const detailsElements = faqContainer.querySelectorAll('details'); const faqSchema = { '@context': 'https://schema.org', '@type': 'FAQPage', mainEntity: [], }; detailsElements.forEach((details, index) => { const summary = details.querySelector('summary'); const content = details.querySelector('.content'); const question = summary.textContent.trim(); const answer = content.textContent.trim(); faqSchema.mainEntity.push({ '@type': 'Question', name: question, acceptedAnswer: { '@type': 'Answer', text: answer, }, }); }); const scriptElement = document.createElement('script'); scriptElement.type = 'application/ld+json'; scriptElement.textContent = JSON.stringify(faqSchema); document.head.appendChild(scriptElement); } generateFAQSchema(); </script>
قم بتنزيل البرنامج النصي للأسئلة الشائعة

سيقوم هذا البرنامج النصي تلقائيًا بإنشاء مخطط الأسئلة الشائعة بناءً على السؤال والإجابة المضافة في قسم الأسئلة الشائعة.

لا يتعين عليك إنشاء مخطط الأسئلة الشائعة يدويًا على موقع Blogger الإلكتروني. سيقوم هذا البرنامج النصي بالسحر تلقائيًا.

فيديو يوتيوب

لذلك، إذا كنت تجري أي تغييرات أو تضيف المزيد من الأسئلة، فلن تحتاج إلى إنشاء مخطط الأسئلة الشائعة مرة أخرى باستخدام أي أداة عبر الإنترنت.

إذا وجدت هذه المقالة مفيدة، فقم بمشاركتها على وسائل التواصل الاجتماعي وساعد الآخرين على معرفة ذلك. إذا كان لديك أي شك بخصوص هذا الأمر، فأخبرني بذلك في قسم التعليقات.