https://github.com/PressForward/pressforward
Raw File
Tip revision: 64180676dab9c473a5a6a90df3e3266e8f83289b authored by Aram Zucker-Scharff on 21 July 2019, 22:33:12 UTC
No trailing comma
Tip revision: 6418067
SystemMeta.php
<?php
namespace PressForward\Interfaces;
interface SystemMeta {

	public function add_meta( $post_id, $meta_key, $meta_value, $unique);
	public function update_meta( $post_id, $meta_key, $meta_value, $prev_value);
	public function delete_meta( $post_id, $meta_key, $meta_value);
	public function get_meta( $post_id, $key = '', $single = false );
}
back to top