我正在编辑我的网站以添加评论按钮和查看评论按钮。
我调用 PHP wordpress 函数但不起作用。
我正在添加按钮来代替 Jetpack sharedaddy 模块。
这是代码:
$sharing_content .='<a style="margin-left:2px; font-weight:bold;" class ="comentar" href="<?php comments_link(); ?>">Add a comment</a>';
$sharing_content .='<a style="margin-left:5px; font-weight:bold;" class ="comentar" href="<?php wp_list_comments(); ?>">View comments</a>';
php模块的包含:
include_once dirname( __FILE__ ).'/sharing-sources.php';
我认为这不会运行,因为我没有添加 php wordpress 函数的包含。
有什么帮助吗?:-S