PHP 使用WordPress短代码创建手写签名

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 使用WordPress短代码创建手写签名相关的知识,希望对你有一定的参考价值。

function sc_signature() {
   return '<div id="signature"></div>';
}
add_shortcode('signature', 'sc_signature');

Last, define the style for the #signature id by adding the following code to your style.css:

#signature {
background:url(images/signature.jpg) no-repeat top left;
width:100px;
height:100px;
}

Note: You may have to edit the width and height to fit your image size.

Now, when you’ll want to insert your signature at the end of a post, simply switch WordPress editor to HTML mode and type the following:

[signature]

以上是关于PHP 使用WordPress短代码创建手写签名的主要内容,如果未能解决你的问题,请参考以下文章

PHP 创建简单的基于oEmbed的WordPress短代码

php WordPress短代码允许您创建仅在RSS源中可见的内容。

使用WordPress中的某些属性创建短代码

php 在大多数情况下,创建一个处理WordPress短代码的类是过度的。但是,当您的短代码需要帮助时,它非常方便

PHP 使用帖子附件的Wordpress图像库短代码

php 事件短代码 - 事件日历WordPress插件