어떻게 워드 프레스 밖에서 쇼트 코드를 얻을 수 있습니까? 나는 워드 프레스 밖에서 쇼트 코드를받는 방법?
이
내 코드<?php
require($_SERVER['DOCUMENT_ROOT'] . '/wp-load.php');
$args = array(
'posts_per_page' => 10 // Specify how many posts you'd like to display
);
$latest_posts = new WP_Query($args);
if ($latest_posts->have_posts()) {
while ($latest_posts->have_posts()) {
$latest_posts->the_post();
if (preg_match_all ("#\[scode\](.+)\[\/scode\]#", the_content(), $matches, PREG_SET_ORDER)) {
echo $matches[1];
};
?>
이며,이 PLZ 도움이 될 수 있습니다
[scode]hare is my shortcode[/scode]
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s,
when an unknown printer took a galley of type and scrambled it to make a type specimen book
사람 ...
는 그냥 단축 코드가 걸려있는 함수를 호출하고 그것을 매개 변수를 전달할는 당신 보통 짧은 코드를 통해 그렇게 할 것입니다. 더 나은 질문이지만 왜 WordPress 외부에서 이러한 게시물을 표시해야합니까? 필요에 맞게 사용자 정의 템플릿을 만들 수 있습니다. –