Is it possible to add post specific info in head of worpress post for OG use
Yes, the global post object is already set when wp_head is called. An example for a function body from this post: // restricted to singular pages only if ( ! is_singular() ) return; // there has to be a featured image set $thumb_id = get_post_thumbnail_id(); if ( empty ( $thumb_id ) ) return; // FALSE … Read more