<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset=”<?php bloginfo(‘charset’); ?>”>
<meta name=”viewport” content=”width=device-width, initial-scale=1″>
<title><?php bloginfo(‘name’); ?></title>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<!– الرأس –>
<header>
<div class=”header-logo”>
<h1><?php bloginfo(‘name’); ?></h1> <!– شعار الموقع –>
</div>
<nav>
<?php wp_nav_menu(array(‘theme_location’ => ‘main-menu’)); ?> <!– قائمة التنقل –>
</nav>
</header>
<!– المحتوى الرئيسي –>
<main>
<div class=”main-content”>
<!– المقال الرئيسي –>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<article class=”featured-post”>
<h2><a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a></h2>
<div class=”featured-image”>
<?php if (has_post_thumbnail()) : ?>
<img src=”<?php the_post_thumbnail_url(); ?>” alt=”مقال رئيسي”>
<?php endif; ?>
</div>
<p><?php the_excerpt(); ?></p>
</article>
<?php endwhile; endif; ?>
<!– مقالات مميزة –>
<div class=”featured-articles”>
<h3>مقالات مميزة</h3>
<div class=”articles-grid”>
<?php
// استعلام لعرض مقالات مميزة
$args = array(
‘posts_per_page’ => 3,
‘orderby’ => ‘date’,
‘order’ => ‘DESC’
);
$query = new WP_Query($args);
if ($query->have_posts()) :
while ($query->have_posts()) : $query->the_post();
?>
<div class=”article-card”>
<h4><a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a></h4>
<p><?php the_excerpt(); ?></p>
</div>
<?php endwhile; endif; wp_reset_postdata(); ?>
</div>
</div>
</div>
<!– الشريط الجانبي –>
<aside class=”sidebar”>
<div class=”sidebar-widget”>
<h4>أحدث المقالات</h4>
<ul>
<?php
// عرض أحدث المقالات
$recent_posts = wp_get_recent_posts(array(
‘numberposts’ => 5,
‘post_status’ => ‘publish’
));
foreach ($recent_posts as $post) : ?>
<li><a href=”<?php echo get_permalink($post[‘ID’]); ?>”><?php echo $post[‘post_title’]; ?></a></li>