是否可以在 $post->post_content 中获取帖子内容的 Elementor 样式?
我想要得到什么?
我正在创建 Elementor 自定义小部件。这将输出特定帖子类型的帖子列表。到目前为止一切都很好。我得到了我需要的一切。但问题是,我必须使用 Elementor 自定义(使用 Elementor 创建)输出帖子内容。我使用过 WP_Query 和 get_posts()。我得到的只是原始 HTML,没有任何 Elementor 自定义类
What I am trying to get?
I'm creating an Elementor custom widget. which will output a list of posts of a specific post type. Thus far everything is ok. I'm getting all I need. But the issue is, I have to output post content with its Elementor customization(created with Elementor). I've used WP_Query and get_posts(). all I get is raw HTML without any Elementor customization classes ????. Please check the image
What I've done?
public function wp_post_list($slug_name,$order='ASC',$orderby='date'){
$args = [
'post_type' => $slug_name,
'posts_per_page' => -1,
'orderby' => $orderby,
'order' => $order,
];
return $all_posts = new \WP_Query($args);
}
public function post_list($slug_name,$order='ASC',$orderby='date'){
$args = [
'post_type' => $slug_name,
'posts_per_page' => -1,
'orderby' => $orderby,
'order' => $order,
];
$all_posts = get_posts($args);
return $all_posts;
}
public function skin_time_line($slug){
$st = $this->get_settings_for_display();
$order = $st['post_order'];
$orderby = $st['post_orderby'];
$posts = $this->post_list($slug,$order,$orderby);
$all_posts = $this->wp_post_list($slug,$order,$orderby);
echo '<div class="time_line">';
foreach($posts as $post){
echo '<div class="time_line_post">';
echo '<div class="tl_content">'.$post->post_content.'</div>';
//Getting just the HTML without any class
echo '</div>';
}
echo '</div>';
//or With WP_Query
echo '<div class="content">';
$all_posts = $this->wp_post_list($slug,$order,$orderby);
if ($all_posts->have_posts()) :
while ($all_posts->have_posts()) : $all_posts->the_post();
the_content(); // Getting just the HTML without any class
endwhile;
endif;
echo '</div>';
echo '</div>';
}
Please help! Any kind of suggestion or documentation would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用
https://github.com/elementor/elementor/blob/9aadba35a9ad52cd5e9cbef55a5761f47403491c/includes/frontend.php#L1020-L1025
如果您只想要可以使用的内容
Try to use
https://github.com/elementor/elementor/blob/9aadba35a9ad52cd5e9cbef55a5761f47403491c/includes/frontend.php#L1020-L1025
if you want only the content you can use