开发者 |
storemapper
sureswiftcapital codivated damonsharp |
---|---|
更新时间 | 2024年12月9日 23:18 |
捐献地址: | 去捐款 |
PHP版本: | 5.4.45 及以上 |
WordPress版本: | 6.6.2 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
wp-storemapper.php
to the /wp-content/plugins/
directory<?php wp_storemapper_content(); ?>
in your template(s). This function call takes up to two optional parameters: a title
parameter, which is a string (ex. 'My Storemapper Content
'), and a tag
parameter, that accepts a string to be used as the HTML tag that wraps the title string from the title
parameter. When title
is left empty, no title will be output. When title
is set and tag
is left empty the title will be wrapped in h2
tags by default. For example <?php wp_storemapper_content( 'My Storemapper Content', 'h1' ); ?>
will output the Storemapper content preceeded by <h1>My Storemapper Content</h1>
.wp-storemapper-title
added, which can be used for additional CSS styling.