我正在尝试在一段 jQuery 代码中包含一些 PHP。
PHP 从 WordPress 中提取一个静态块,我需要一种方法将其添加到 jQuery 中。每次我将它添加到块中时,要么根本不显示,要么内容不显示。
获取 PHP 的代码是
<?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('cat_block')->toHtml() ?>
jQuery是
jQuery(document).ready(function () {
jQuery(".catalog-category-view .last li.item:nth-child(7)").after("<li class='category-block-call'>PHP NEEDS TO GO HERE</li>");
});
如您所见,我需要li
在 jQuery 中的标签之间获取 PHP 代码或 PHP 代码的内容。