walkyourcamera
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Duplicate featured images on OM theme by CodestagVeVas, that worked! Thanks so very much for your help and patience!
All the best,
Roger
Forum: Fixing WordPress
In reply to: Duplicate featured images on OM theme by CodestagVeVas, thanks. This is the closest thing I can find to what you referenced:
Om: entry-thumbnail.php (partials/entry-thumbnail.php)
<?php
/**
* @package Stag_Customizer
* @subpackage Om
*/$post_id = get_the_ID();
$thumb_size = ‘content-full’;
$post_thumbnail = get_the_post_thumbnail( $post_id, $thumb_size );?>
<?php if ( has_post_thumbnail( $post_id ) ) : ?>
<figure class=”entry-thumbnail”>
<?php echo $post_thumbnail; ?>
</figure>
<?php endif; ?>Forum: Fixing WordPress
In reply to: Duplicate featured images on OM theme by CodestagIt’s a part of the content of the post, then selected as a featured image.
Here’s the code:
<?php
/**
* @package Stag_Customizer
*/get_header(); ?>
<main id=”main” class=”site-main” role=”main”>
<?php if ( have_posts() ) : ?><?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( ‘partials/content’, ‘single’ ); ?>
<?php endwhile; ?><?php endif; ?>
</main><?php get_sidebar(); ?>
<?php get_footer();
Forum: Fixing WordPress
In reply to: Creating a link from a page headerThanks! It worked perfectly.
Forum: Fixing WordPress
In reply to: Creating a link from a page headerHow can I tell if my theme supports this?
Forum: Fixing WordPress
In reply to: Two URLs using the same index?CND – yes! I think that’s it. Thanks for the link and the help. I’ll give it a shot tomorrow. Best…