有人知道如何只排除wordpress中get_the_content()函数的第一个字母?
可能是这样的片段,但它不起作用!
substr(strip_tags(get_the_content()), 1, get_the_content().length)
提前多多感谢:)
答案 0 :(得分:3)
您不需要第三个参数,只需写:
substr(strip_tags(get_the_content()), 1)
答案 1 :(得分:2)
你可能正在寻找像这样的东西
$content = get_the_content();
$content = strip_tags($content);
$content = substr($content, 1, strlen($content));
你几乎拥有它。只需要使用strlen()函数来获取字符串的长度。