答案 0 :(得分:0)
如果您打算使用短代码执行此操作,请使用以下代码进行创建;
`<?php
function firstshortcode_function() {
*//Your Code Should Be Written Here!*
return 'My first shortcode';
}
add_shortcode('firstshortcode', 'firstshortcode_function');
?>`
..并使用此[firstshortcode]短代码,无论您想将其称为何处。
注意:您可以用您喜欢的任何内容替换函数名称,并相应地替换短代码。
要在其下添加HTML内容,请使用以下代码;
<?php
function my_custom_shortcode( $atts ) {
/ Turn on buffering /
ob_start(); ?>
<div>
// YOUR HTML CODE GOES HERE
<h1>Test</h1>
<p>My content</p>
</div>
<?php
/ Get the buffered content into a var /
$sc = ob_get_contents();
/ Clean buffer /
ob_end_clean();
/ Return the content as usual /
return $sc;
}
add_shortcode( 'shortcode', 'my_custom_shortcode' );
?>