https://github.com/PressForward/pressforward
Raw File
Tip revision: a1481911c6e64f7414732d2209163491ce950267 authored by Aram Zucker-Scharff on 24 May 2017, 17:29:18 UTC
Readability optimizations
Tip revision: a148191
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