Magento 2 Footer – How to Add Custom Footer

footerfooter-linksmagento2

enter image description here

I want to add footer link like I attach image .
I am using magento2.1

Best Answer

in admin go to Content->Blocks and there you will find footer_links cms block. You can edit footer_links cms block and add layout / html of your footer.

or create a cms block with any name i.e my_custom_footer and call this in your theme layout ( Magento_Theme/layout/default.xml ) footer section like :

<block class="Magento\Cms\Block\Block" name="footer-socialmedia-link" after="-">
  <arguments>
      <argument name="block_id" xsi:type="string">my_custom_footer</argument>
  </arguments>
</block>
Related Topic