{"id":19533,"date":"2012-08-19T21:36:24","date_gmt":"2012-08-19T21:36:24","guid":{"rendered":"https:\/\/wordpress.org\/plugins-wp\/full-breadcrumb\/"},"modified":"2012-11-19T17:01:19","modified_gmt":"2012-11-19T17:01:19","slug":"full-breadcrumb","status":"publish","type":"plugin","link":"https:\/\/eu.wordpress.org\/plugins\/full-breadcrumb\/","author":8393220,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_crdt_document":"","version":"1.2","stable_tag":"trunk","tested":"3.4.2","requires":"2.8","requires_php":"","requires_plugins":"","header_name":"Full Breadcrumb","header_author":"Pedro Elsner","header_description":"","assets_banners_color":"","last_updated":"2012-11-19 17:01:19","external_support_url":"","external_repository_url":"","donate_link":"","header_plugin_uri":"https:\/\/github.com\/pedroelsner\/full-breadcrumb","header_author_uri":"http:\/\/pedroelsner.com\/","rating":4,"author_block_rating":0,"active_installs":100,"downloads":9711,"num_ratings":2,"support_threads":0,"support_threads_resolved":0,"author_block_count":0,"sections":["description","installation","changelog"],"tags":[],"upgrade_notice":[],"ratings":{"1":0,"2":0,"3":0,"4":"2","5":0},"assets_icons":[],"assets_banners":[],"assets_blueprints":{},"all_blocks":[],"tagged_versions":["1.0","1.1","1.2"],"block_files":[],"assets_screenshots":{"screenshot-1.png":{"filename":"screenshot-1.png","revision":"1538864","resolution":"1","location":"plugin"}},"screenshots":{"1":"The Full Breadcrumb in my (Pedro Elsner) website =)"},"jetpack_post_was_ever_published":false},"plugin_section":[],"plugin_tags":[11353,31218,31219,31220],"plugin_category":[],"plugin_contributors":[77719],"plugin_business_model":[],"class_list":["post-19533","plugin","type-plugin","status-publish","hentry","plugin_tags-breadcrumb","plugin_tags-breadcrumb-for-custom-posts","plugin_tags-breadcrumb-support-taxonomy","plugin_tags-taxonomy-hierarquical","plugin_contributors-pedro-elsner","plugin_committers-musashinm","plugin_committers-pedro-elsner"],"banners":[],"icons":{"svg":false,"icon":"https:\/\/s.w.org\/plugins\/geopattern-icon\/full-breadcrumb.svg","icon_2x":false,"generated":true},"screenshots":[{"src":"https:\/\/ps.w.org\/full-breadcrumb\/trunk\/screenshot-1.png?rev=1538864","caption":"The Full Breadcrumb in my (Pedro Elsner) website =)"}],"raw_content":"<!--section=description-->\n<ul>\n<li>Support Hierarquical Taxonomies<\/li>\n<\/ul>\n\n<p>Show breadcrumb in pages, posts, custom posts, categories, taxonomies, tags, authors, attachments and archives.<\/p>\n\n<h4>Basic Usage<\/h4>\n\n<p>Put this code <code>&lt;?php if (function_exists('show_full_breadcrumb')) show_full_breadcrumb(); ?&gt;<\/code> in your theme and enjoy!<\/p>\n\n<p>Or, for to get the breadcrumb: <code>&lt;?php if (function_exists('get_full_breadcrumb')) $var = get_full_breadcrumb(); ?&gt;<\/code><\/p>\n\n<p>In <code>get_full_breadcrumb<\/code> you can use the additional parameter <code>'type' =&gt; 'array'<\/code> to return an array with the links. eg. <code>array( 'type' =&gt; 'array' )<\/code><\/p>\n\n<h4>Basic Customization<\/h4>\n\n<pre><code>&lt;?php\nshow_full_breadcrumb(\n    array(\n        'separator' =&gt; array(\n            'content' =&gt; '&amp;raquo;'\n        ), \/\/ set FALSE to hide\n        'home' =&gt; array(\n            'showLink' =&gt; false\n        )\n    )\n);\n?&gt;\n<\/code><\/pre>\n\n<h4>Advanced Customization<\/h4>\n\n<pre><code>&lt;?php\nif (function_exists('show_full_breadcrumb')) show_full_breadcrumb(\n    array(\n        'labels' =&gt; array(\n            'local'  =&gt; __('You are here:'), \/\/ set FALSE to hide\n            'home'   =&gt; __('Home'),\n            'page'   =&gt; __('Page'),\n            'tag'    =&gt; __('Tag'),\n            'search' =&gt; __('Searching for'),\n            'author' =&gt; __('Published by'),\n            '404'    =&gt; __('Error 404 &amp;rsaquo; Page not found')\n        ),\n        'separator' =&gt; array(\n            'element' =&gt; 'span',\n            'class'   =&gt; 'separator',\n            'content' =&gt; '&amp;rsaquo;'\n        ), \/\/ set FALSE to hide\n        'local' =&gt; array(\n            'element' =&gt; 'span',\n            'class'   =&gt; 'local'\n        ),\n        'home' =&gt; array(\n            'showLink'       =&gt; false,\n            'showBreadcrumb' =&gt; true\n        ),\n        'actual' =&gt; array(\n            'element' =&gt; 'span',\n            'class'   =&gt; 'actual'\n        ), \/\/ set FALSE to hide\n        'quote' =&gt; array(\n            'tag'    =&gt; true,\n            'search' =&gt; true\n        ),\n        'page_ancestors' =&gt; array(\n            'showLink' =&gt; false\n        )\n    )\n);\n?&gt;\n<\/code><\/pre>\n\n<h4>Settings for Portuguese-BR<\/h4>\n\n<pre><code>&lt;?php\nif (function_exists('show_full_breadcrumb')) show_full_breadcrumb(\n    array(\n        'labels' =&gt; array(\n            'local'  =&gt; __('Voc\u00ea est\u00e1 aqui:'), \/\/ set FALSE to hide\n            'home'   =&gt; __('In\u00edcio'),\n            'page'   =&gt; __('P\u00e1gina'),\n            'tag'    =&gt; __('Etiqueta'),\n            'search' =&gt; __('Buscando'),\n            'author' =&gt; __('Publicado por'),\n            '404'    =&gt; __('Error 404 &amp;rsaquo; P\u00e1gina n\u00e3o encontrada')\n        ),\n        'separator' =&gt; array(\n            'element' =&gt; 'span',\n            'class'   =&gt; 'separator',\n            'content' =&gt; '&amp;rsaquo;'\n        ), \/\/ set FALSE to hide\n        'home' =&gt; array(\n            'showLink' =&gt; true\n        )\n    )\n);\n?&gt;\n<\/code><\/pre>\n\n<!--section=installation-->\n<ol>\n<li>Go to your admin area and select Plugins -&gt; Add new from the menu.<\/li>\n<li>Search for \"Full Breadcrumb\".<\/li>\n<li>Click install.<\/li>\n<li>Click activate.<\/li>\n<li>Put this code <code>&lt;?php if (function_exists('show_full_breadcrumb')) show_full_breadcrumb(); ?&gt;<\/code> in your theme and enjoy!<\/li>\n<\/ol>\n\n<p>See the <a href=\"http:\/\/wordpress.org\/extend\/plugins\/full-breadcrumb\/screenshots\/\">description tab<\/a> to know how customize. the breadcrumb,<\/p>\n\n<!--section=changelog-->\n<h4>1.2<\/h4>\n\n<ul>\n<li>Added a option to enable links to page's acestors.<\/li>\n<li>Added a option to disable the element in actual.<\/li>\n<li>Bug correction. Returns a empty register in array.<\/li>\n<\/ul>\n\n<h4>1.1<\/h4>\n\n<ul>\n<li>Bug correction. Breaks on author without published posts.<\/li>\n<li>Include all category hierarchy of the post.<\/li>\n<li>Added a option to return as array.<\/li>\n<li>Added a option to disable the quotes in search and tags.<\/li>\n<li>Added a option to hide the separator.<\/li>\n<\/ul>\n\n<h4>1.0<\/h4>\n\n<ul>\n<li>First revision.<\/li>\n<\/ul>","raw_excerpt":"Show breadcrumb for taxonomies, custom posts and all another pages.","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/eu.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin\/19533","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/eu.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin"}],"about":[{"href":"https:\/\/eu.wordpress.org\/plugins\/wp-json\/wp\/v2\/types\/plugin"}],"replies":[{"embeddable":true,"href":"https:\/\/eu.wordpress.org\/plugins\/wp-json\/wp\/v2\/comments?post=19533"}],"author":[{"embeddable":true,"href":"https:\/\/eu.wordpress.org\/plugins\/wp-json\/wporg\/v1\/users\/pedro-elsner"}],"wp:attachment":[{"href":"https:\/\/eu.wordpress.org\/plugins\/wp-json\/wp\/v2\/media?parent=19533"}],"wp:term":[{"taxonomy":"plugin_section","embeddable":true,"href":"https:\/\/eu.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_section?post=19533"},{"taxonomy":"plugin_tags","embeddable":true,"href":"https:\/\/eu.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_tags?post=19533"},{"taxonomy":"plugin_category","embeddable":true,"href":"https:\/\/eu.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_category?post=19533"},{"taxonomy":"plugin_contributors","embeddable":true,"href":"https:\/\/eu.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_contributors?post=19533"},{"taxonomy":"plugin_business_model","embeddable":true,"href":"https:\/\/eu.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_business_model?post=19533"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}