{"id":3554,"date":"2017-09-09T10:50:28","date_gmt":"2017-09-09T10:50:28","guid":{"rendered":"https:\/\/ampforwp.com\/tutorials\/?post_type=ht_kb&#038;p=3554"},"modified":"2020-05-07T08:34:52","modified_gmt":"2020-05-07T08:34:52","slug":"sidebar","status":"publish","type":"ht_kb","link":"https:\/\/ampforwp.com\/tutorials\/article\/sidebar\/","title":{"rendered":"Sidebar"},"content":{"rendered":"\n<p>This article is for&nbsp;<a href=\"https:\/\/ampforwp.com\/amp-theme-framework\/\">AMP Theme Framework<\/a>&nbsp;users.<\/p>\n\n\n\n<h3>About this Component<\/h3>\n\n\n\n<p>Sidebar Component is used to add the area for displaying the menu, social icons etc in AMP theme.<\/p>\n\n\n\n<h3>How to use:<\/h3>\n\n\n\n<p>Following are the steps to use this component.<\/p>\n\n\n\n<p><strong>Step 1:<\/strong><\/p>\n\n\n\n<p>To initiate the support for the component in your theme just add the following code to the functions.php of the theme files.<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;php&quot;,&quot;mime&quot;:&quot;text\/x-php&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:false,&quot;styleActiveLine&quot;:false,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;PHP&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;php&quot;}\">\/\/Sidebar\nadd_amp_theme_support('AMP-sidebar');<\/pre><\/div>\n\n\n\n<p>This was the back-end part where we&#8217;ve just initiated, now to make it appear in the front-end follow the next step.<\/p>\n\n\n\n<p><strong>Step 2:<\/strong><\/p>\n\n\n\n<p>To add the <strong>Sidebar<\/strong>&nbsp;we need to call it.<br>example: add the following code in header.php header&#8217;s div of the theme files.<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;php&quot;,&quot;mime&quot;:&quot;text\/x-php&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:false,&quot;styleActiveLine&quot;:false,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;PHP&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;php&quot;}\">&lt;?php amp_sidebar(['action'=&gt;'open-button']); ?&gt;<\/pre><\/div>\n\n\n\n<p>where we&#8217;ve set the&nbsp;&#8216;action&#8217; =&gt; &#8216;open-button&#8217; which&nbsp;sets a button for opening the sidebar.<\/p>\n\n\n\n<p><strong>Step 2-I:<\/strong><\/p>\n\n\n\n<p>Now add the following code after the closing the header&#8217;s div in header.php<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;php&quot;,&quot;mime&quot;:&quot;text\/x-php&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:false,&quot;styleActiveLine&quot;:false,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;PHP&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;php&quot;}\">&lt;?php amp_sidebar(['action'=&gt;'start',\n    'id'=&gt;'sidebar',\n    'layout'=&gt;'nodisplay',\n    'side'=&gt;'right'\n] ); ?&gt;<\/pre><\/div>\n\n\n\n<p>here we&#8217;re adding different properties to the <strong>Sidebar&nbsp;<\/strong>such as from which side it should be &#8216;side&#8217; =&gt; &#8216;right&#8217;.<\/p>\n\n\n\n<p><strong>Step 2-II:<\/strong><\/p>\n\n\n\n<p>Now come to the step where we&#8217;re going add the content in the <strong>Sidebar<\/strong>.<br>example: we wanted to add the menu, search etc, just call the components in header.php of themes file.<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;php&quot;,&quot;mime&quot;:&quot;text\/x-php&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:false,&quot;styleActiveLine&quot;:false,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;PHP&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;php&quot;}\">&lt;?php amp_sidebar(['action'=&gt;'close-button']); ?&gt; \/\/ closing button\n&lt;?php amp_menu(); ?&gt; \/\/ menu component\n&lt;?php amp_search();?&gt; \/\/ search component\n&lt;?php amp_social(); ?&gt;  \/\/ social component\n&lt;?php amp_sidebar(['action'=&gt;'end']); ?&gt; \/\/ ending the sidebar<\/pre><\/div>\n\n\n\n<p>with this, you&#8217;re successfully able to add&nbsp;<strong>Sidebar<\/strong>&nbsp;on your theme.<\/p>\n\n\n\n<p><strong>That\u2019s it for this tutorial!<\/strong><\/p>\n\n\n\n<p>We hope it helped you. If you have any feedback or questions, then please share them in the comments section below.<\/p>\n<div id=\"div-1\" class=\"hkb-feedback\">\n\t\t\t<strong class=\"ht-mobile-exit__title\">Ask your Questions Directly!<\/strong><br>\n\t\t\t<div class=\"hkb_widget_exit__content\" style=\"font-size: 14px;\">If you can't find the solutions in this article, then just ask us in the comments and we will answer it for you!<\/div>\n\t\t\t<a href=\"https:\/\/ampforwp.com\/support\/#contact\" id=\"button\" target=\"_blank\" rel=\"noopener noreferrer\"><button>Yes, I have a Question<\/button><\/a>\n\t\t<\/div>","protected":false},"excerpt":{"rendered":"<p>This article is for&nbsp;AMP Theme Framework&nbsp;users. About this Component Sidebar Component is used to add the area for displaying the menu, social icons etc in AMP theme. How to use: Following are the steps to use this component. Step 1: To initiate the support for the component in your theme&#8230;<\/p>\n","protected":false},"author":1,"comment_status":"open","ping_status":"closed","template":"","format":"standard","meta":[],"ht-kb-category":[185],"ht-kb-tag":[82],"_links":{"self":[{"href":"https:\/\/ampforwp.com\/tutorials\/wp-json\/wp\/v2\/ht-kb\/3554"}],"collection":[{"href":"https:\/\/ampforwp.com\/tutorials\/wp-json\/wp\/v2\/ht-kb"}],"about":[{"href":"https:\/\/ampforwp.com\/tutorials\/wp-json\/wp\/v2\/types\/ht_kb"}],"author":[{"embeddable":true,"href":"https:\/\/ampforwp.com\/tutorials\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ampforwp.com\/tutorials\/wp-json\/wp\/v2\/comments?post=3554"}],"version-history":[{"count":6,"href":"https:\/\/ampforwp.com\/tutorials\/wp-json\/wp\/v2\/ht-kb\/3554\/revisions"}],"predecessor-version":[{"id":17264,"href":"https:\/\/ampforwp.com\/tutorials\/wp-json\/wp\/v2\/ht-kb\/3554\/revisions\/17264"}],"wp:attachment":[{"href":"https:\/\/ampforwp.com\/tutorials\/wp-json\/wp\/v2\/media?parent=3554"}],"wp:term":[{"taxonomy":"ht_kb_category","embeddable":true,"href":"https:\/\/ampforwp.com\/tutorials\/wp-json\/wp\/v2\/ht-kb-category?post=3554"},{"taxonomy":"ht_kb_tag","embeddable":true,"href":"https:\/\/ampforwp.com\/tutorials\/wp-json\/wp\/v2\/ht-kb-tag?post=3554"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}