I was trying to add an icon to my footer and could not figure it out for multiple hours, so in case it will help someone else, I am making a note here. The place to add this is in LocalSettings.php.
Topic on Manual talk:$wgFooterIcons
What do I add exactly? I tried adding at the bottom of the local settings but the logo just disappears:
$wgFooterIcons = [
"copyright" => [
"copyright" => [], // placeholder for the built in copyright icon
],
"poweredby" => [
"Magentrix" => [
// Defaults to point at
// "$wgResourceBasePath/resources/assets/poweredby_mediawiki_176x62.png"
// plus srcset for 1.5x, 2x resolution variants.
"src" => null,
"url" => "https://www.mediawiki.org/",
"alt" => "Powered by MediaWiki",
]
],
];
isn't Manual:$wgFooterIcons#Site_customization customizable enough?