スキル一覧に戻る
sattip

xstore-widgets

by sattip

Context7-style instructions for Claude Code to configure XStore theme and create WPBakery pages via WordPress database operations

0🍴 0📅 2026年1月6日
GitHubで見るManusで実行

SKILL.md


XStore Widget Configuration

Configure sidebar widgets for XStore theme via WP-CLI.

Instructions

When this skill is invoked, help the user configure widgets for XStore theme sidebars.

Reference Documentation

Read the widget reference from WIDGETS.md in this repository.

Available Sidebars

Sidebar IDPurpose
shop-sidebarShop/category pages
single-sidebarProduct detail pages
footer-1 to footer-4Footer columns
blog-sidebarBlog pages

Common Widget Commands

List widgets:

wp widget list shop-sidebar --format=table

Add widgets:

# Product search
wp widget add woocommerce_product_search shop-sidebar --title=""

# Categories
wp widget add woocommerce_product_categories shop-sidebar \
  --title="Categories" --count=1 --hierarchical=1 --hide_empty=1

# Price filter
wp widget add woocommerce_price_filter shop-sidebar --title="Price"

# Brand filter
wp widget add woocommerce_layered_nav shop-sidebar \
  --title="Brand" --attribute=pa_brand --display_type=list

# Static block (banner)
wp widget add etheme-static-block shop-sidebar --block_id=BLOCK_ID

Reset sidebar:

wp widget reset shop-sidebar

Complete Shop Sidebar Setup

wp widget reset shop-sidebar
wp widget add woocommerce_product_search shop-sidebar 0 --title=""
wp widget add woocommerce_product_categories shop-sidebar 1 \
  --title="Categories" --count=1 --hierarchical=1 --hide_empty=1
wp widget add woocommerce_price_filter shop-sidebar 2 --title="Price"
wp widget add woocommerce_layered_nav shop-sidebar 3 \
  --title="Brand" --attribute=pa_brand --display_type=list
wp widget add woocommerce_rating_filter shop-sidebar 4 --title="Rating"

Workflow

  1. Ask user which sidebar they want to configure
  2. List current widgets: wp widget list SIDEBAR --format=table
  3. Determine which widgets to add/remove
  4. Execute WP-CLI widget commands
  5. Verify configuration with widget list

スコア

総合スコア

55/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

0/5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です