MiLLer7 adlı üyeden alıntı: mesajı görüntüle
@LINK_SATISI; toplutema.sh içeriğini paylaşın

#r10.com/lalilax
clear
main_directory="/var/www/vhosts/"
sites_directory="$main_directory*"
read -p "Lütfen kurmak istediğiniz tema adını girin: " theme_name
for site_directory in $sites_directory; do
if [ -d "$site_directory" ]; then
uploads_directory="$site_directory/httpdocs"
cd $uploads_directory
wp theme install $theme_name --activate --allow-root
wp litespeed-option reset --allow-root
echo "Tema kurulumu tamamlandı: $theme_name"
fi
done
echo "İşlem tamamlandı."