Wp函数the_content();是否接受内部的另一个标记

时间:2020-04-13 作者:Dragut

我想在\\u content()中放置一些其他PHP标记,是否可能?

<?php the_content(

$custom_attach = get_post_meta( $post->ID, \'wp_custom_attachment\', true );

      $custom_attach = get_post_meta( get_the_ID(), \'wp_custom_attachment\', true );

     $name = \'button\';

if ( ! empty( $custom_attach ) ) {

    echo \'<span class="icon-download">\';
    echo \'<a href="\'.$custom_attach[\'url\'].\'">\'.$name.\'</a>\';
    echo \'<span>\';
} 
); ?>

1 个回复
SO网友:User

为什么要将代码放在the_content()? 你想完成什么?

也许这能解决你的问题?

<?php
    $custom_attach = get_post_meta( get_the_ID(), \'wp_custom_attachment\', true );
    $name = \'button\';

    if(!empty($custom_attach)) {
        echo \'<span class="icon-download">\';
        echo \'<a href="\'.$custom_attach[\'url\'].\'">\'.$name.\'</a>\';
        echo \'<span>\';
    }

    the_content();
?>
这与<span> -类的元素icon-download 首先,然后是帖子的内容。

相关推荐

初学者问题:通过管理Web界面访问Functions.php以导入自定义帖子类型?

是否可以访问这些功能。php文件仅仅使用管理web界面?我正在尝试访问以前创建的(手动编码的)自定义帖子类型,我不得不跳过很多障碍,因为我无法访问函数中的代码。php文件。我已经浏览了很多帮助页面,但建议的步骤似乎总是涉及到函数。php文件(我无法访问)或使用插件中的导入/导出工具,该插件首先创建了自定义帖子类型(据我所知,没有使用任何插件)。这似乎是一个非常基本的问题,但我一辈子都想不出来。任何帮助都将不胜感激!