'; return; } /* * QUIZ POSTS */ if(type === "quiz"){ posts.forEach( function(post){ const box = document.createElement( "div" ); box.className = "sri-ca-quiz-item"; const date = new Date( post.date ).toLocaleDateString( "en-IN", { day:"numeric", month:"short", year:"numeric" } ); box.innerHTML = '
' + '' + post.title.rendered + '' + '
' + '' + '📅 ' + date + '
'; container.appendChild( box ); } ); return; } /* * NORMAL CURRENT AFFAIRS */ posts.forEach( function(post){ const box = document.createElement( "article" ); box.className = "sri-ca-post"; const date = new Date( post.date ).toLocaleDateString( "en-IN", { day:"numeric", month:"short", year:"numeric" } ); /* * Clean Excerpt */ const temp = document.createElement( "div" ); temp.innerHTML = post.excerpt.rendered; let excerpt = temp.textContent || temp.innerText || ""; excerpt = excerpt.substring( 0, 150 ); if( excerpt.length >= 150 ){ excerpt += "..."; } box.innerHTML = '' + '📅 ' + date + '
' + '' + '' + post.title.rendered + '' + '
' + '' + excerpt + '
'; container.appendChild( box ); } ); } ) .catch( function(error){ console.error( "SarkariResulti:", error ); container.innerHTML = '' + '' + 'Content load नहीं हो पाया।' + '' + '
' + 'Category slug check करें: ' + '' + slug + '' + '
'; } ); } } ); ' + 'Category slug check करें: ' + '' + slug + '' + '