S
S
Space2015-10-06 13:49:38
WordPress
Space, 2015-10-06 13:49:38

How to define the main page in Wordpress?

I want to display my landing page on the main page, but it is not part of the theme. Therefore, I want to do this: using php, determine whether this is the main page, if so, then I display my page, if not, then everything is according to the script. Tell me how to implement?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
M
Mikhail, 2015-10-06
@ruslite

If I'm not mistaken, then there are 2 functions, 1 of them is_home(), 2 is_front_page(), well, as far as I can remember, I always used 1
Example:

if( is_home() ){
   // код
}

In general, there is a list of all these functions, keep

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question