php 示例类,演示如何在WordPress中使用类。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 示例类,演示如何在WordPress中使用类。相关的知识,希望对你有一定的参考价值。

<?php

/**
 * Class PostContentAppender
 */
class PostContentAppender {

	protected $append = '';

	public function __construct( $append ) {
		$this->append = $append;
		add_action( 'the_content', array( $this, 'append_content' ) );
	}

	public function append_content( $content ) {
		return $content . $this->append;
	}

}

$appender = new PostContentAppender('<p>Posted by Micah Wood</p>');

以上是关于php 示例类,演示如何在WordPress中使用类。的主要内容,如果未能解决你的问题,请参考以下文章