RestroPress

⌘K
  1. Home
  2. Docs
  3. RestroPress
  4. Developer Docs
  5. Functions
  6. rpress_get_fooditem()

rpress_get_fooditem()

This function can be used to retrieve the post object for a fooditem by either ID or slug.

Example:

$fooditem = rpress_get_fooditem(34); 
$fooditem = rpress_get_fooditem('fooditem'); 

// you can now do things like this:
$title = $download->post_title;

How can we help?