| Server IP : 68.178.247.200 / Your IP : 216.73.217.50 Web Server : Apache System : Linux p3plzcpnl489463.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64 User : x9dppmxs4rgd ( 8559391) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/x9dppmxs4rgd/www/wp-content/themes/grace-church/templates/trx_blogger/ |
Upload File : |
<?php
// Disable direct call
if ( ! defined( 'ABSPATH' ) ) { exit; }
/* Theme setup section
-------------------------------------------------------------------- */
if ( !function_exists( 'grace_church_template_plain_theme_setup' ) ) {
add_action( 'grace_church_action_before_init_theme', 'grace_church_template_plain_theme_setup', 1 );
function grace_church_template_plain_theme_setup() {
grace_church_add_template(array(
'layout' => 'plain',
'template' => 'plain',
'need_terms' => true,
'mode' => 'blogger',
'title' => esc_html__('Blogger layout: Plain', 'grace-church')
));
}
}
// Template output
if ( !function_exists( 'grace_church_template_plain_output' ) ) {
function grace_church_template_plain_output($post_options, $post_data) {
?>
<div class="post_item sc_blogger_item sc_plain_item<?php echo ($post_options['number'] == $post_options['posts_on_page'] && !grace_church_param_is_on($post_options['loadmore']) ? ' sc_blogger_item_last' : ''); ?>">
<?php
if (!empty($post_data['post_terms'][$post_data['post_taxonomy']]->terms_links)) {
?>
<div class="post_category">
<span class="post_category_label"><?php esc_html_e('in', 'grace-church'); ?></span> <?php echo join(', ', $post_data['post_terms'][$post_data['post_taxonomy']]->terms_links); ?>
</div>
<?php
}
if (!isset($post_options['links']) || $post_options['links']) {
?><h4 class="post_title"><a href="<?php echo esc_url($post_data['post_link']); ?>"><?php echo ($post_data['post_title']); ?></a></h4><?php
} else {
?><h4 class="post_title"><?php echo ($post_data['post_title']); ?></h4><?php
}
if (!$post_data['post_protected'] && $post_options['info']) {
$info_parts = array('counters'=>true, 'terms'=>false, 'author' => false);
require(grace_church_get_file_dir('templates/_parts/post-info.php'));
}
?>
</div> <!-- /.post_item -->
<?php
}
}
?>