网站完整地图 – 所有页面对应按钮




⚠️ 按钮系统需要JavaScript支持。请启用JavaScript以使用完整导航功能。




🗺️ 网站完整地图

点击下方按钮访问网站所有页面和功能

📊 网站统计

📄
17
总页面数

📝
1
文章数量

🛒
10
产品数量

🏷️
6
分类数量

📜
3
政策页面

💰
5
电商功能

📋 页面分类


3

主页

🏠

ID: 2059

Singulart艺术电商 – 克隆主页

页面链接: https://uzdianzishuceshi.online/singulart-art-ecommerce-clone-homepage/


访问页面

🏠

ID: 2034

Singulart Art Gallery – Premium Artworks for Sale

页面链接: https://uzdianzishuceshi.online/


访问页面


6

艺术品页面

🖼️

ID: 2118

404 Page Not Found – Singulart

页面链接: https://uzdianzishuceshi.online/404-not-found/


访问页面

🖼️

ID: 2117

Shopping Cart – Singulart Clone

页面链接: https://uzdianzishuceshi.online/shopping-cart/


访问页面

🖼️

ID: 2116

Buy Art Online

页面链接: https://uzdianzishuceshi.online/buy-art-online-52/


访问页面

🖼️

ID: 2115

Buy Art Online

页面链接: https://uzdianzishuceshi.online/buy-art-online-51/


访问页面

🖼️

ID: 2114

Buy Art Online

页面链接: https://uzdianzishuceshi.online/buy-art-online-50/


访问页面

🖼️

ID: 2066

Buy Art Online

页面链接: https://uzdianzishuceshi.online/buy-art-online-3/


访问页面


3

商店与购物

🛍️

ID: 34

结账

页面链接: https://uzdianzishuceshi.online/checkout/


访问页面

🛍️

ID: 33

购物车

页面链接: https://uzdianzishuceshi.online/cart/


访问页面

🛍️

ID: 32

商店

页面链接: https://uzdianzishuceshi.online/shop/


访问页面


10

🛒 WooCommerce产品

🛒

$32200

Sultana Feluccas

🛒

$15015

Staring

🛒

$5400

Trace de lumière

🛒

$44700

Portrait d’un Gazaouï

🛒

$20720

Instant de vie

🛒

$24605

Monet’s Dream

🛒

$16345

Arches

🛒

$12775

Stellar #08

🛒

$12880

Refreshed by the Sea (diptych)

🛒

$12215

Chirp


6

🏷️ 产品分类

🏷️

Drawing

19 个产品


浏览分类

🏷️

Painting

20 个产品


浏览分类

🏷️

Photography

19 个产品


浏览分类

🏷️

Print

19 个产品


浏览分类

🏷️

Sculpture

20 个产品


浏览分类

🏷️

Uncategorized

0 个产品


浏览分类


// 智能分类链接映射 - 根据关键词匹配 document.addEventListener('DOMContentLoaded', function() { → // 智能关键词映射规则 → const categoryRules = [ → → { keywords: ['painting', 'painter', 'canvas', 'oil', 'acrylic'], slug: 'painting' }, → → { keywords: ['sculpture', 'sculpt', 'statue', '3d', 'bronze'], slug: 'sculpture' }, → → { keywords: ['photography', 'photo', 'camera', 'digital', 'print'], slug: 'photography' }, → → { keywords: ['drawing', 'sketch', 'pencil', 'charcoal', 'ink'], slug: 'drawing' }, → → { keywords: ['print', 'lithograph', 'etching', 'screen'], slug: 'print' }, → → { keywords: ['art', 'contemporary', 'modern', 'abstract', 'portrait', 'landscape'], slug: 'painting' } // 默认 → ]; → → const blocks = document.querySelectorAll('.home .wp-block-column'); → → blocks.forEach(function(block, index) { → → const heading = block.querySelector('h2, h3, h4'); → → if (!heading) return; → → → → const title = heading.textContent.trim().toLowerCase(); → → → → let matchedSlug = 'painting'; → → for (const rule of categoryRules) { → → → if (rule.keywords.some(keyword = title.includes(keyword))) { → → → → matchedSlug = rule.slug; → → → → break; → → → } → → } → → → → let link = block.querySelector('a'); → → if (!link) { → → → link = document.createElement('a'); → → → link.className = 'category-link'; → → → link.style.cssText = 'display: inline-block; margin-top: 20px; padding: 12px 30px; background-color: #3498db; color: white; text-decoration: none; border-radius: 4px; font-weight: 600; transition: all 0.3s ease;'; → → → block.appendChild(link); → → } → → → → link.href = 'https://uzdianzishuceshi.online/product-category/' + matchedSlug + '/'; → → link.textContent = 'Browse ' + heading.textContent.trim(); → → → → link.addEventListener('mouseenter', function() { → → → this.style.backgroundColor = '#2980b9'; → → → this.style.transform = 'translateY(-2px)'; → → }); → → → → link.addEventListener('mouseleave', function() { → → → this.style.backgroundColor = '#3498db'; → → → this.style.transform = 'translateY(0)'; → → }); → }); → → console.log('✅ Category navigation links added successfully'); });