Wordpress 链接和中断不显示在博客文章的前端

Wordpress 链接和中断不显示在博客文章的前端,wordpress,post,blogs,wysiwyg,Wordpress,Post,Blogs,Wysiwyg,在我的blost帖子中添加打断和链接时,标记不会显示在网站前端。我希望这些链接是可以点击的,但事实并非如此。HTML输出根本不显示任何标记 博客文章使用Wordpress 4.9.9的标准所见即所得编辑器 编辑器中的代码: In de winter maanden organiseren wij ook een aantal pizza- party- aanschuiftafels, binnen in onze stubli. De volgende data 2019 kun je no

在我的blost帖子中添加打断和链接时,标记不会显示在网站前端。我希望这些链接是可以点击的,但事实并非如此。HTML输出根本不显示任何标记

博客文章使用Wordpress 4.9.9的标准所见即所得编辑器

编辑器中的代码:

In de winter maanden organiseren wij ook een aantal pizza- party- 
aanschuiftafels, binnen in onze stubli. De volgende data 2019 kun je nog 
mee eten:  vrijdag 25 januari, vrijdag 8 maart en vrijdag 29 maart.

Aanvang: 18.30u, eerder komen borrelen? Altijd gezellig! Vanaf 19 april 
bakken wij weer iedere vrijdag pizza's, buiten onder de grote luifel.

Je kunt je opgeven via de mail (noodzakelijk):<a 
href="mailto:%20info@bijonsingroesbeek.nl"> info@bijonsingroesbeek.nl</a>
模板代码:

<?php if ( $portfolio_count == 1 || ( $et_ptemplate_portfolio_size == 2 && (!$fullwidth && ($portfolio_count+1) % 2 == 0) ) || ( $et_ptemplate_portfolio_size == 3 && (($portfolio_count+1) % 2 == 0) ) ) {
                    $et_open_row = true; ?>
                    <div class="et_pt_portfolio_row clearfix">
                <?php } ?>

                        <div class="et_pt_portfolio_item">

                            <?php { ?><h2 class="et_pt_portfolio_title"><?php echo esc_html( $et_portfolio_title ); ?></h2>
                            <?php } ?>
                                <div class="et_pt_portfolio_entry<?php if ( $height == $et_portrait_height ) echo ' et_portrait_layout'; ?>">

                                    <div class="et_pt_portfolio_image<?php if ( '' != $et_videolink || '' != $et_custom_embed_video ) echo ' et_video'; ?>">
                                    <?php print_thumbnail($thumb, $thumbnail["use_timthumb"], $titletext, $width, $height, ''); ?>
                                    <span class="et_pt_portfolio_overlay"></span>

                                    <a class="et_portfolio_zoom_icon fancybox" title="<?php the_title_attribute(); ?>"<?php if ( '' == $et_videolink && '' == $et_custom_embed_video ) echo ' rel="portfolio"'; ?> href="<?php if ( '' != $et_videolink || '' != $et_custom_embed_video ) echo esc_url( '#' . $et_video_id ); else echo($thumbnail['fullpath']); ?>"><?php esc_html_e('Zoom in','Chameleon'); ?></a>
                                    <a class="et_portfolio_more_icon" href="<?php the_permalink(); ?>"><?php esc_html_e('Read more','Chameleon'); ?></a>
                                </div> <!-- end .et_pt_portfolio_image -->
                            </div> <!-- end .et_pt_portfolio_entry -->
                            <?php if ($et_ptemplate_showdesc) { ?>
                                <div id="bijonshome_p"><p><?php truncate_post(500); ?></p></div>
                            <?php } ?>
                        </div> <!-- end .et_pt_portfolio_item -->


我已经解决了这个问题,在模板中使用了这个函数。这是一种摘录,不显示任何链接或HTML标记。我变了

<?php truncate_post(500); ?> with -> <?php the_content(); ?>, 
带->的
现在它工作得很好:)

<?php truncate_post(500); ?> with -> <?php the_content(); ?>,