£Á°è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áyMä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')}