어떤 카테고리에 글을 작성할때만 후킹을 하고싶은데
add_action 으로 필터가 가능한지요?
[code title=””]
function pushService_post($post_ID)
{
global $post;
// 예시.. 클래스 아이디인 계정에게만 푸쉬를 날린다..
$dataStruct = array();
pushService_sendPush($post -> ID.”adsad”, $dataStruct);
return $post_ID;
}
add_action ( ‘publish_post’, ‘pushService_post’);
[/code]