£Á°èZ¨Ä…–K§‚«“ô4“ÒÙ´dîfUÙÃÅ WKbyʦ•ꎅȮFÒ¿ÊÎóCozá¬S@6{Í:›œêZÌ:Š•_%:¢¾¾~;‘Ã~芩ÊǍí`ÔÑ©ú뙵'5I¿fš×WO%ø9¾«¾DK|€ùÍD”Ýs]nHÕ¶êםӼ㞪éUWŸÈË%DÒÕ¬ï‘]/Åcx ‰ï2ß]ä6G[]S£Ôϯrs{úëóµmÒï#UQxo·õÞCe]"±/aÙ&Eã4ú9Jé_ÞåëdãöKë)AÞ ¯¹ægƒÛowЍø^d™ý½ßB7áyMä9ÜÖUã !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! import { __ } from '@wordpress/i18n'; import { useBlockProps } from '@wordpress/block-editor'; import { useSelect } from '@wordpress/data'; import { Notice } from '@wordpress/components'; export default function Edit({attributes}) { let [title] = useSelect((select) => { return [ select('core/editor').getEditedPostAttribute("title") || __('Example title', 'siteseo'), ] }, []); let crumbs = []; if(attributes.prefix){ crumbs.push({ 'title' : attributes.prefix, 'url' : false }); } if(!attributes.hideHome){ crumbs.push({ 'title' : attributes.homeLabel ? attributes.homeLabel : __('Home'), 'url' : true }); } crumbs.push({ 'title' : title, 'url' : false }); return ( <>

{__('This is just a preview, to see the final result, please view this page as a normal user', 'siteseo')}

); }