How to edit contents of dynamic_sidebar()?

  1. The contents of dynamic_sidebar are pulled from the widgets associated with this “Sidebar” aka “Widget Area” in wp-admin, as @s_ha_dum answered. There is no template file for the sidebar itself. Visit /wp-admin/widgets.php under Appearance -> Widgets and find the widget area titled homepage-infobox. You be able to add/remove widgets and possibly make changes to the content here.
  2. Search your plugin and theme files, possibly functions.php for register_sidebar to find one using the slug homepage-infobox. The declaration of register_sidebar may include some presentation code.

See also

Leave a Comment