Created
March 9, 2017 14:27
-
-
Save iledcom/52be7cfbdcda584fa890db5412449335 to your computer and use it in GitHub Desktop.
WP/Output of an custom field
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Необходимо вывести поле содержащее текст "Подробнее" | |
//Произвольные поля | |
//Имя: more | |
//Значение: Подробнее | |
$more = get_post_custom_values('more'); | |
<?php echo $more[0];?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment