first commit

This commit is contained in:
2024-07-15 11:28:08 +02:00
commit f52d538ea5
21891 changed files with 6161164 additions and 0 deletions

View File

@@ -0,0 +1,49 @@
<?php
global $newsletter; // Newsletter object
global $post; // Current post managed by WordPress
if (!defined('ABSPATH'))
exit;
// This file is included inside a function so it inherit all the local variables.
// Since a theme has it's own options, it must check if there is new content to send
// out.
// Inside $theme_options['last_time'] there is the time stamps of the last run
// to be used to decide if we need to stop or not.
$filters = array();
$filters['posts_per_page'] = (int)$theme_options['max_posts'];
if ($filters['posts_per_page'] == 0) $filters['posts_per_page'] = 10;
// This theme has an option with categories to be included.
if (is_array($theme_options['categories'])) {
$filters['cat'] = implode(',', $theme_options['categories']);
}
$posts = get_posts($filters);
// Retrieve the posts asking them to WordPress
$posts = get_posts($filters);
?><?php echo $theme_options['theme_opening_text']; ?>
* <?php echo $theme_options['theme_title']; ?>
<?php
foreach ($posts as $post) {
// Setup the post (WordPress requirement)
setup_postdata($post);
?>
<?php the_title(); ?>
<?php the_permalink(); ?>
<?php } ?>
<?php echo $theme_options['theme_footer_text']; ?>