Помогите с условием пустого поля или нет. Все по мануалу, но не работает
о, увы скрипт не работает.
Код:
<?php
$excerpt = get_the_excerpt();
if($excerpt != '') { ?>
<?php the_excerpt(); ?>
<?php } else { ?>
<?php the_title(); ?>
<?php } ?>
$excerpt = get_the_excerpt();
if($excerpt != '') { ?>
<?php the_excerpt(); ?>
<?php } else { ?>
<?php the_title(); ?>
<?php } ?>
Return Values
- If the post does not have an excerpt, it returns an empty string, with "[...]" at the end.
- For password protected pages it returns a string, which has a default value of "There is no excerpt because this is a protected post." This text can be changed in the function definition.
- If the post has an excerpt and is not password protected, it returns the excerpt as a string.
т.е. надо поидее
Код:
if($excerpt != "[...]")
Не, мне не нужно сокращать. Мне нужно выводить заголовок статьи если нету цитаты.
Цитата: order.daemon
Не, мне не нужно сокращать. Мне нужно выводить заголовок статьи если нету цитаты.
:facepalm:
Условие проверки поменяй на моё.
И еще раз прочитай документацию.