PHP - 어떻게 하면 '` 끈으로 또는 끈으로 바꾸거나
나는 다음 기능을 많이 사용합니다.
get_search_query()
검색에서 반환된 값을 가져오고 문자열을 수정하고 사용할 수 있도록 하는 것입니다.
기능을 알아야 다음을 얻을 수 있습니다.<?php the_content(); ?>
문자열로서 또는 함수가 반환하는 것을 문자열로 변환하는 방법.
내용은 문단 태그가 있는 간단한 단어일 뿐이지만, 그 기능을 사용하면 태그도 얻을 수 있기 때문에 하이퍼링크에 추가할 수 있도록 텍스트만 받고 싶습니다.
제 생각엔 당신이에요get_the_content()
, 잘 문서화 되어있는: http://codex.wordpress.org/Function_Reference/the_content
html 형식의 변수에 저장해야 할 경우 이렇게 하십시오.
apply_filters('the_content',$post->post_content)
WP는 모르지만, 묵시적인 명명 규칙은 다음을 암시할 것입니다.get_the_content()
. 구글링을 추가하면 _the_content_with_formating 변형이 나타납니다.
그러나 _content()를 다음과 같이 포장하는 것이 대안이 될 수 있습니다.ob_start()
그리고.ob_get_contents()+ob_end()
. 후자는 어떤 것이든 돌려줍니다.print
그때까지 생산된 생산량.
get_the_content()를 사용하여 문자열을 생성해야 하며 문자열을 포맷할 수 있습니다.
$the_post = get_post();
$the_post->post_content;
이 방법을 사용하여 얻을 수 있는 전체 목록:
[ID] =>
[post_author] =>
[post_date] =>
[post_date_gmt] =>
[post_content] =>
[post_title] =>
[post_excerpt] =>
[post_status] =>
[comment_status] =>
[ping_status] =>
[post_password] =>
[post_name] =>
[to_ping] =>
[pinged] =>
[post_modified] =>
[post_modified_gmt] =>
[post_content_filtered] =>
[post_parent] =>
[guid] =>
[menu_order] =>
[post_type] =>
[post_mime_type] =>
[comment_count] =>
[filter] =>
참고:get_the_content
무엇과 같은 것을 돌려주지는 않습니다.the_content
전시.이를 위해서는 다음을 수행해야 합니다.
$content = apply_filters('the_content', get_the_content());
echo $content;
언급URL : https://stackoverflow.com/questions/4405395/php-how-do-i-get-php-the-content-as-a-string-or-turn-it-into-a-strin
'programing' 카테고리의 다른 글
각도에서 td 속성 colspan으로 속성 바인딩을 사용하는 방법은 무엇입니까? (0) | 2023.10.17 |
---|---|
varchar를 무제한 길이로 설정하는 방법은? (0) | 2023.10.17 |
컬럼을 추가하기 위해 테이블을 수정하는 동안 플라이웨이를 통해 타임아웃 오류가 발생합니다. (0) | 2023.10.17 |
디브의 스크롤 바를 필요할 때만 볼 수 있도록 하려면 어떻게 해야 합니까? (0) | 2023.10.17 |
Angular로 댓글을 쓸 수 있는 방법이 있습니까?소스를 볼 때 보이지 않도록 JS (0) | 2023.10.17 |