im trying to add to my index.php a code that if its the front page of the site, it will do something, and if its not(regular page) it will do something else.
iv'e tried this code`
<?php
if ( is_front_page() ) {
blabla home
} else {
bla bla data
}
?>
`
but its not working ! i read every post about this issue and still no luck :(