2025-10-08 08:06:54 +00:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* Archive Opinion
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
$context = Timber::context();
|
|
|
|
|
|
2025-10-16 11:26:27 +00:00
|
|
|
$context['posts_opinion'] = Timber::get_posts(); // WordPress ya tiene la paginación correcta en la query
|
2025-10-14 15:08:21 +00:00
|
|
|
error_log('✅ archive-opinion - Posts: ' . count($context['posts_opinion']));
|
2025-10-08 08:06:54 +00:00
|
|
|
|
|
|
|
|
Timber::render('templates/page-opinion.twig', $context);
|