/** * Starter Content Compatibility. * * @since 4.0.0 * @package Astra */ /** * Class Astre_Starter_Content */ class Astra_Starter_Content { public const HOME_SLUG = 'home'; public const ABOUT_SLUG = '#about'; public const SERVICES_SLUG = '#services'; public const REVIEWS_SLUG = '#reviews'; public const WHY_US_SLUG = '#whyus'; public const CONTACT_SLUG = '#contact'; /** * Constructor */ public function __construct() { $is_fresh_site = get_option( 'fresh_site' ); if ( ! $is_fresh_site ) { return; } // Adding post meta and inserting post. add_action( 'wp_insert_post', array( $this, 'register_listener', ), 3, 99 ); // Save astra settings into database. add_action( 'customize_save_after', array( $this, 'save_astra_settings', ), 10, 3 ); if ( ! is_customize_preview() ) { return; } // preview customizer values. add_filter( 'default_post_metadata', array( $this, 'starter_meta' ), 99, 3 ); add_filter( 'astra_theme_defaults', array( $this, 'theme_defaults' ) ); add_filter( 'astra_global_color_palette', array( $this, 'theme_color_palettes_defaults' ) ); } /** * Load default starter meta. * * @since 4.0.2 * @param mixed $value Value. * @param int $post_id Post id. * @param string $meta_key Meta key. * * @return string Meta value. */ public function starter_meta( $value, $post_id, $meta_key ) { if ( get_post_type( $post_id ) !== 'page' ) { return $value; } if ( 'site-content-layout' === $meta_key ) { return 'plain-container'; } if ( 'theme-transparent-header-meta' === $meta_key ) { return 'enabled'; } if ( 'site-sidebar-layout' === $meta_key ) { return 'no-sidebar'; } if ( 'site-post-title' === $meta_key ) { return 'disabled'; } return $value; } /** * Register listener to insert post. * * @since 4.0.0 * @param int $post_ID Post Id. * @param \WP_Post $post Post object. * @param bool $update Is update. */ public function register_listener( $post_ID, $post, $update ) { if ( $update ) { return; } $custom_draft_post_name = get_post_meta( $post_ID, '_customize_draft_post_name', true ); $is_from_starter_content = ! empty( $custom_draft_post_name ); if ( ! $is_from_starter_content ) { return; } if ( 'page' === $post->post_type ) { update_post_meta( $post_ID, 'site-content-layout', 'plain-container' ); update_post_meta( $post_ID, 'theme-transparent-header-meta', 'enabled' ); update_post_meta( $post_ID, 'site-sidebar-layout', 'no-sidebar' ); update_post_meta( $post_ID, 'site-post-title', 'disabled' ); } } /** * Get customizer json * * @since 4.0.0 * @return mixed value. */ public function get_customizer_json() { try { $request = wp_remote_get( ASTRA_THEME_URI . 'inc/compatibility/starter-content/astra-settings-export.json' ); } catch ( Exception $ex ) { $request = null; } if ( is_wp_error( $request ) ) { return false; // Bail early. } // @codingStandardsIgnoreStart /** * @psalm-suppress PossiblyNullReference * @psalm-suppress UndefinedMethod * @psalm-suppress PossiblyNullArrayAccess * @psalm-suppress PossiblyNullArgument * @psalm-suppress InvalidScalarArgument */ return json_decode( $request['body'], 1 ); // @codingStandardsIgnoreEnd } /** * Save Astra customizer settings into database. * * @since 4.0.0 */ public function save_astra_settings() { $settings = self::get_customizer_json(); // Delete existing dynamic CSS cache. delete_option( 'astra-settings' ); if ( ! empty( $settings['customizer-settings'] ) ) { foreach ( $settings['customizer-settings'] as $option => $value ) { update_option( $option, $value ); } } } /** * Load default astra settings. * * @since 4.0.0 * @param mixed $defaults defaults. * @return mixed value. */ public function theme_defaults( $defaults ) { $json = ''; $settings = self::get_customizer_json(); if ( ! empty( $settings['customizer-settings'] ) ) { $json = $settings['customizer-settings']['astra-settings']; } return $json ? $json : $defaults; } /** * Load default color palettes. * * @since 4.0.0 * @param mixed $defaults defaults. * @return mixed value. */ public function theme_color_palettes_defaults( $defaults ) { $json = ''; $settings = self::get_customizer_json(); if ( ! empty( $settings['customizer-settings'] ) ) { $json = $settings['customizer-settings']['astra-color-palettes']; } return $json ? $json : $defaults; } /** * Return starter content definition. * * @return mixed|void * @since 4.0.0 */ public function get() { $nav_items_header = array( 'home' => array( 'type' => 'post_type', 'object' => 'page', 'object_id' => '{{' . self::HOME_SLUG . '}}', ), 'about' => array( 'title' => __( 'Services', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::SERVICES_SLUG . '}}', ), 'services' => array( 'title' => __( 'About', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::ABOUT_SLUG . '}}', ), 'reviews' => array( 'title' => __( 'Reviews', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::REVIEWS_SLUG . '}}', ), 'faq' => array( 'title' => __( 'Why Us', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::WHY_US_SLUG . '}}', ), 'contact' => array( 'title' => __( 'Contact', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::CONTACT_SLUG . '}}', ), ); $content = array( 'attachments' => array( 'logo' => array( 'post_title' => _x( 'Logo', 'Theme starter content', 'astra' ), 'file' => 'inc/assets/images/starter-content/logo.png', ), ), 'theme_mods' => array( 'custom_logo' => '{{logo}}', ), 'nav_menus' => array( 'primary' => array( 'name' => esc_html__( 'Primary', 'astra' ), 'items' => $nav_items_header, ), 'mobile_menu' => array( 'name' => esc_html__( 'Primary', 'astra' ), 'items' => $nav_items_header, ), ), 'options' => array( 'page_on_front' => '{{' . self::HOME_SLUG . '}}', 'show_on_front' => 'page', ), 'posts' => array( self::HOME_SLUG => require ASTRA_THEME_DIR . 'inc/compatibility/starter-content/home.php', // PHPCS:ignore WPThemeReview.CoreFunctionality.FileInclude.FileIncludeFound ), ); return apply_filters( 'astra_starter_content', $content ); } } WPS office 2019 家用及微型企業版 應用軟體 Yahoo購物中心 - Bun Apeti - Burgers and more

WPS office 2019 家用及微型企業版 應用軟體 Yahoo購物中心

WPS辦公軟件開發金山公司的辦公套件,並與微軟的Word,PowerPoint和Excel高度兼容。 它的主要成分是WPS作家,WPS電子表格和WPS演示。 在電腦上運行WPS Office-PDF,Word,Sheet,PPT,您可以在大螢幕上清晰地瀏覽, 而用滑鼠和鍵盤操控應用程式比用觸摸屏鍵盤要快得多,同時你將永遠不必擔心設備的電量問題。 wps下载 至少,目前中國網友與媒體還是一陣撻伐,質疑的點是在於怎麼會連本地端的文件都偷看(大家先忽略線上就可以審查的這個邏輯 XD)。 溫馨提醒您:若您訂單中有購買簡體館無庫存/預售書或庫存於海外廠商的書籍,建議與其他商品分開下單,以避免等待時間過長,謝謝。

WPS Office-PDF,Word,Sheet,PPT

  • 但應用本身具備有審查機制應該是毫無疑問的事情了(即使只有分享出去才會被審)。
  • 600款字體版權:可通過私有化部署放置在軟體中供企業使用。
  • 可根據需要將各項服務量身定制,部署在政企客戶局域網環境。
  • RollBack Rx 提供了一種管理 PC 的全新方法。

文字工具:一鍵完成“段落重排”、“刪除空行”、“刪除換行符”等重複性操作,還能進行“智能格式整理”,快捷地重新整理段落。 有意思的是,在微博有人貼出自己的萬字小說被 WPS Office 無故以「文件含有違禁內容,禁止訪問」鎖定的截圖之後。 WPS Office 倒是很快就透過社群發出嚴正的聲明,指稱應用並不會操作使用者的文件檔案;後續調查更直指對方是分享線上檔案連結才涉嫌違規,認為這「純屬誤導」。 幻燈片設計:演示結合企業用戶各場景需求,更新本地範本資源庫,並同步更新設計板塊的資源,精簡準確,為用戶帶來了多重範本體驗。 豐富的視圖模式:普通視圖,閱讀版式,Web版式,全屏模式,及護眼模式六種視圖,從多個層面觀看文檔,提高閱讀與編輯的效率。

支持的文件擴展名

WPS Office

閱讀模式:用戶在檢查公式或是檢查數據時,易看錯行或者列,WPS提供檢查數據的閱讀模式,每行數據清晰展示,縱向對比也一樣方便。 狀態欄快速求和:WPS表格在狀態欄提供了大量的數據資訊,方便用戶在操作時及時查看,在 WPS表格中,如果選擇幾個數值,狀態欄會同時顯示“平均值”、“計數”、“求和”。 凍結窗格提示:當表格數據過多,可利用凍結窗格工具鎖定特定的行與列。 動態的函數參數提示:提示參數的輸入範圍 / 含義,幫助你更快的輸入正確的參數、減少公式出錯的機會。 中文數字格式:在財務工作中,經常需要將小寫的金額數字轉換成中文大寫金額,WPS 表格的單元格數字格式可以快速實現。 智能合併單元格:提供合併快捷鍵、相同單元格、合併拆分並填充單元格等功能,滿足各種不同情況下快速合併、拆分的需要。

WPS Office

WPS office

WPS Office

RollBack Rx 是您 PC 的即時時間機器。 RollBack Rx 提供了一種管理 PC 的全新方法。 任何不可預見的事件,例如用戶錯誤、病毒甚至軟體安裝錯誤,都可以以快速有效的方式輕鬆且絕對地逆轉。

WPS Office

它採用 AI 技術,提供智能化的辦公解決方案,並支援雲端儲存和多種檔案格式。 深度相容,無縫接軌秉承不丟內容、不破壞數據、應用系統低成本遷移的相容性三大原則,實現文檔格式、功能介面,操作習慣、二次開發、Windows 和 Linux 兩大平臺深度相容。 PDF-XChange Editor 是一款專為Windows設計的輕量級PDF工具,免費版即支援編輯、註釋、簽名等實用功能,效能流暢不卡頓。 雖然介面設計較傳統需適應,但相比Adobe價格更親民,適合預算有限但需要基礎編輯功能的使用者。

  • 重複項管理:整理花名冊、物料清單的時候,往往要求每個名稱、編碼是唯一的。
  • 有意思的是,在微博有人貼出自己的萬字小說被 WPS Office 無故以「文件含有違禁內容,禁止訪問」鎖定的截圖之後。
  • Tenorshare PDNob 是一款 AI 驅動的專業 PDF 編輯器,提供高效、智慧的 PDF 編輯、轉換、OCR 識別及批註功能。
  • 幻燈片設計:演示結合企業用戶各場景需求,更新本地範本資源庫,並同步更新設計板塊的資源,精簡準確,為用戶帶來了多重範本體驗。
  • 文本轉數字:使用外部數據時,經常會產生一些不能計算的文本格式“假數字”,導致統計出錯。
/** * Template part for displaying the footer info. * * @link https://codex.wordpress.org/Template_Hierarchy * * @package Astra * @since 1.0.0 */ ?>
Scroll to Top