1) Workarounds for WPUF’s missing edit link! (button) https://developer.wordpress.org/reference/functions/get_the_id/ https://stackoverflow.com/questions/4893435/getting-the-wordpress-post-id-of-current-post https://rudrastyh.com/wordpress/get-post-id.html post-id: <a href=/dashboard/edit/?pid={return_post_id]>EDIT</a>{return_post_id]= for return_post_id to work you need the following code in the theme’s functions.php /* —– START —— */add_shortcode( ‘return_post_id’, ‘RRB_return_post_id’ );function RRB_return_post_id() {return get_the_ID();}/* —– END —– */ EDIT 2) Images -> VIDEO in lightbox! Plextube.nl link:https://plextube.nl/videos/embed/e530faba-8bd2-4818-b32c-2b64a20256ba?autoplay=1&title=0&warningTitle=0&p2p=0(can copy video code from Read more…