clickable title of 2 post on mainpage USING functions.php
here is answer 🙂 add_action(‘generate_after_header’, ‘work_only_on_front_page’, 999); function work_only_on_front_page(){ if ( is_front_page() ) { echo ‘ any text with divs’; $args = array( ‘posts_per_page’ => 2, // we need only the latest post, so get that post only ‘cat’ => ‘1’ // Use the category id, can also replace with category_name which uses category slug … Read more