div show on home page only not in paged

im using this piece of code to show my div only on homepage.

?php if ( is_front_page() ) :?

but it's shown on pagination 2, 3 and so on. is there any help regarding to fixing this issue?

Topic paged homepage Wordpress

Category Web


Thank you guys for quick response. Here is the code that worked for me.

<?php if( is_home() != '' && !is_paged()) { ?>
    div here
<?php } ?>

See: http://codex.wordpress.org/Function_Reference/is_home

<?php if(is_home()): ?>

 <div>Your div.</div>

<?php endif;?>

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.