<?php
//Breadcrumbs - Yoast SEO - nalezy wlaczyc funkcje breadcrumbs w kokpicie
if ( function_exists('yoast_breadcrumb') ) {yoast_breadcrumb('<p id="breadcrumbs">','</p>');} //display breadcrumbs
//Dynamic Featured Image - pozwala na dodawanie kolejnych zdjec
global $dynamic_featured_image;
$id = get_the_ID() / get_option('page_for_posts ') / get_option('page_on_front')
$img = $dynamic_featured_image->get_featured_images()[0]['full'];
?>
<img src="<?php echo $img ?>">
<!--
get_the_ID() - dla stron takich jak single.php
get_option('page_for_posts ') - dla strony bloga
get_option('page_on_front') - dla strony startowej
-->
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.