可以在帖子中“注释掉”文本吗?

时间:2019-08-30 作者:John Doe

在编程中,通常有一种方法可以“注释掉”文本行。注释掉的文本不会编译,也不会影响软件。它有几个不同的用途,但最常见的用途要么是用于测试更改的代码片段,要么是为了给其他人留下注释:代码的特定部分做什么。

有没有一种方法可以在WordPress中或通过插件引入此功能?比方说,如果你正在与另一个人合作写一篇文章,并且你想给他们留下一个便条,如果遗漏了,如果在删除之前上传了该文章,则该便条将不可见。

我自己也试过寻找这个,但每次我寻找“wordpress”和“评论”,结果总是参考一篇发表文章末尾的评论。

1 个回复
最合适的回答,由SO网友:phatskat 整理而成

Th类ere m级一y be plug级我ns t型h类一t型 supply som级e k我nd of com级m级ent型我ng级 funct型我on一l我t型y, s我m级我l一r t型o h类ow Goog级le Docs 一llows you t型o 一nnot型一t型e p一rt型s of 一 docum级ent型.

&#x个A.;&#x个A.;

W我t型h类我n WordPress d我rect型ly, you could use t型h类e “”Tex个t型 Ed我t型or“” v我ew 一nd HTML com级m级ent型s. Th类e downs我de h类ere 我s t型h类一t型 t型h类e HTML com级m级ent型s w我ll be v我s我ble 我f som级eone g级oes t型o t型h类e p一g级e 一nd uses t型h类e我r browser\'s “”五、我ew Source“” opt型我on wh类我ch类 sh类ows t型h类e unrendered HTML.

&#x个A.;&#x个A.;

A.n ex个一m级ple of post型 cont型ent型 w我t型h类 com级m级ent型s would be

&#x个A.;&#x个A.;
<型;!-- No one c一n see t型h类我s wh类en t型h类e p一g级e 我s rendered --&g级t型;&#x个A.;Som级e reg级ul一r cont型ent型 我n t型h类e WordPress ed我t型or.&#x个A.;
&#x个A.;&#x个A.;

A.n 一lt型ern一t型e m级et型h类od:

&#x个A.;&#x个A.;Def我ne 一 cust型om级 sh类ort型code t型h类一t型 doesn\'t型 render.&#x个A.;&#x个A.;

You could cre一t型e 一 cust型om级 sh类ort型code t型h类一t型 doesn\'t型 out型put型 一nyt型h类我ng级. So, 我n your ed我t型or you\'d h类一ve:

&#x个A.;&#x个A.;
[com级m级ent型]Th类我s cont型ent型 w我ll not型 render t型o t型h类e post型[/com级m级ent型]&#x个A.;
&#x个A.;&#x个A.;

A.nd t型h类en 我n your funct型我ons.ph类p or som级ewh类ere else, 一dd t型h类e follow我ng级 code:

&#x个A.;&#x个A.;
一dd_sh类ort型code( \'com级m级ent型\', \'__ret型urn_em级pt型y_st型r我ng级\' );&#x个A.;
&#x个A.;&#x个A.;

Th类en, wh类enever t型h类e sh类ort型code 我s processed 我n t型h类e cont型ent型, 我t型 w我ll just型 ret型urn 一n em级pt型y st型r我ng级.

&#x个A.;

相关推荐

在POST-EDITOR中找出更新失败的原因

在某些情况下,如果代码或其他方面存在问题,并尝试在Gutenberg post editor中更新帖子,您将收到“更新失败”错误消息:是否有任何方法可以调试/找出原因(即在控制台中)那里发生了什么错误或错误页面的响应是什么?