https://github.com/PressForward/pressforward
Raw File
Tip revision: 89e24575a6148025d4da072301673393e12b9311 authored by Aram Zucker-Scharff on 07 January 2017, 19:38:09 UTC
More more formatting fixes
Tip revision: 89e2457
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