我有一些关于逃跑的问题。这些例子是我做不到的。
Must I escape variables, if it is, how can I do it?
例如:global $redux_demo;
在此代码中:
if ( class_exists( \'Redux\' ) ) {
global $redux_demo;
if ($redux_demo[\'button-set-single-archive-services\'] == 2)
{
get_template_part( \'demo-archive-services\' );
die;
Is it true escaping?
<?php esc_html_e( \'Our Services\', \'hekim\' )?>
Functions start with the, need escaping or not?
例如:<?php the_title(); ?>
如果我用以下函数更改这些函数get
, 他们需要逃跑吗?函数启动时的输出有什么不同吗the
和功能启动get
?
Why this escaped function doesnt seem?
在逃离这个法尔之后,似乎没有。我逃跑的错误是什么?真正的形式是什么?<li><?php esc_html( \'<a href="#"> HOME </a>\' ); ?>xx</li>