如何在wordpress的页脚中创建列短代码

时间:2016-09-02 11:13:52

标签: wordpress

我想在我的wordpress网站的页脚区域中分隔三列和每列有五行..我不知道如何使用短代码..任何人都可以帮助我..

enter image description here

例如,像这个页脚我需要使用短代码..

1 个答案:

答案 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' );
?>