Viewing 1 replies (of 1 total)
  • Plugin Author Justin Peacock

    (@mrdink)

    Hey MulderDSM,

    Device Mockups isn’t built to use featured images BUT it’s possible to modify your theme to work along with DM. This would be a way I would go about doing it.

    In your theme, where you’d like the shortcode/featured image to show, add the following.

    <?php if ( has_post_thumbnail() ):
    
    	$dm = '[device type="imac"]
    	' . the_post_thumbnail( 'large', array( 'alt' => get_the_title() ) ) . '
    	[/device]';
    
    	echo do_shortcode( $dm );
    
    endif; ?>

    I haven’t tested this so be sure to mess around with it. You’ll want to change the type to whichever device type you want to use.

    Thanks,
    JP

Viewing 1 replies (of 1 total)
  • The topic ‘How could I use with Featured Images?’ is closed to new replies.