function glm_quicksite_widget_init()
{
- register_sidebar(array(
- 'name' => __('Right Sidebar'),
- 'id' => 'sidebar-r',
- 'description' => __('Appears in Right Sidebar')
- ));
- //register_sidebar(array(
- // 'name' => __('Footer'),
- // 'id' => 'sidebar-f',
- // 'description' => __('Appears in Footer Area')
- //));
register_sidebar(array(
'name' => __('Slideshow'),
'id' => 'slideshow',
add_action('init', 'mytheme_init', 10);
+function wpse_setup_theme() {
+ add_image_size('glm-block-image', 290, 190,true);
+}
+
+add_action( 'after_setup_theme', 'wpse_setup_theme' );
function mytheme_search_loop() {
while ( have_posts() ) : the_post(); ?>
<?php if($block->url):?>
<a href="<?php echo $block->url;?>"<?php if($block->externalUrl){echo ' target="_blank"';}?>>
<?php endif;?>
- <?php echo $block->thumbnail;?>
+ <?php echo get_the_post_thumbnail($block->ID, 'glm-block-image');?>
<?php if($block->url):?>
</a>
<?php endif;?>