Jump to content
  • 0

Как сделать: Wordpress if (is_home()) нормально для HTML?


Alarr
 Share

Question

Вопрос не чисто по вёрстке, но всё же, от верстальщика, который таки суётся в вордпресс уже долго, но не знает пхп на должном уровне :) Хочу облегчить работу с этим оператором, а точней упростить синтаксис.

 

Есть такая штука:

 

<?phpif ( is_home() ) {    // This is the blog posts index    get_sidebar( 'blog' );} else {    // This is not the blog posts index    get_sidebar();}?>

Как правильно экранировать if else, что бы спокойно можно было вписывать чистый HTML код, без всяких там пхпшных кавычек, точек, и.т.д. ?

 

Видел такой пример, но на его основе всё равно не могу сделать то что надо, выдаёт ошибки или просто ничего не показывает.

 

<?php if(get_field('repeater_field_name')): ?>	<ul>	<?php while(has_sub_field('repeater_field_name')): ?>		<li>sub_field_1 = <?php the_sub_field('sub_field_1'); ?>, sub_field_2 = <?php the_sub_field('sub_field_2'); ?>, etc</li>	<?php endwhile; ?>	</ul><?php endif; ?>
Edited by Alarr
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

в приведенном примере все вроде нормально, но что значат в начале и конце эти строчки я не знаю: sub_field_1 =  и , etc

по сути они просто вписаны в html и работать не должны.

вы киньте сюда свой код, может вы в нем что не так прописываете?

ну и как в примере показано, начало должно иметь двоеточие:

 

<?php if(что-то): ?>

 

тут ваш код между if и endif...

 

а в конце точка с запятой и ключевое слово end:

 

<?php endif; ?>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy