Skip to main content
Last Reviewed: February 26, 2020

Manage Themes

Beginners guide on how to use the WordPress Dashboard, an SFTP client, and your text editor of choice to work quickly, safely and easily on Pantheon's Git-based platform.


This lesson demonstrates how to utilize Git while developing over SFTP with a local file client and text editor. Often, premium plugins or themes need to be downloaded from the plugin provider and uploaded to your site. In this example, we will replicate that by uploading a new theme, creating a child theme, and then finally make some example customizations to the stylesheet -- all while submitting our work to version control along the way in sensibly grouped commits. ARE YOU UPDATING

Upload a Theme

  1. Download the Bento theme from WordPress.org to your local machine.

  2. Navigate to Code in the Dev tab of your Site Dashboard. Confirm your Connection Mode is still set to SFTP.

  3. Establish a secure connection from your local to Pantheon using an SFTP client of your choice (this guide uses Transmit).

    Click Connect with SFTP then select the link to Open SFTP Client:

    Open in your default SFTP client

    If you have already set up an SSH key, as recommended in the Before You Begin section of the guide's introduction, you should see a new window open for your SFTP client where you can see local files and remote files on Pantheon. In Transmit, local files are managed on the left and Pantheon's on the right:

    Open in your default SFTP client window

    Troubleshooting

    Manually Connect via SFTP

    If for some reason your client does not establish a connection to Pantheon by clicking the handy default link, use the provided values from the Site Dashboard's Connect with SFTP to open a connection.

    1. The default window when opening the Transmit application provides a dialog titled Quick Connect where you can Connect via SFTP:

      New Transmit Site

    2. Copy the value provided by Pantheon for Host and paste into Transmit's Address field. Do the same for Port and Username.

    3. Click the key icon next to the Password field to add your private SSH key, or authenticate using your Pantheon Dashboard password.

    4. Click Connect:

      New Transmit Site

  4. Navigate to the code/wp-content/themes directory within the remote file manager for Pantheon on the right side. Then drag and drop the Bento theme folder from your local computer onto Pantheon to upload the theme. You'll see Transmit begin uploading, then confirm once it's done:

    Upload bento theme gif

    That's all it takes! You can now activate the Bento theme in the WordPress Dashboard.

  5. Return to the Site Dashboard on Pantheon, and you should see quite a few files ready to be committed to Git. That's from the theme we just uploaded. Write a commit message then click Commit to submit our new theme to version control:

    Commit bento theme

Create a Child Theme

If you intend to tweak the look and feel of a theme using custom functions or styles, you need to do it in a child theme. Otherwise, you'll lose that customization on the next update to the theme.

The child theme inherits all the features of the Bento theme. It's simply a spot to safely extend the theme so that customizations persist after future updates.

  1. Use Transmit and navigate to the remote code/wp-content/themes directory on Pantheon.

  2. Right-click then select New Folder and name it bento-child:

    create bento-child theme dir

  3. Right-click the bento-child directory then select New File and name it style.css:

    create beneto-child theme stylesheet

  4. If you don't already have your SFTP client configured to use your preferred text editor, you can do that now. Here's how we configured Transmit so that double-clicking a file opens it up for edits in Atom (Transmit > Preferences > Files from the app menu):

    Transmit file config

  5. Double-click the new style.css file within Transmit to open it up for edits in Atom, then add the following to the top:

    style.css
    /*
    Theme Name:   Bento Child
    Description:  A Bento-based child theme for demo purposes on Pantheon.
    Author:       <Your Name>
    Template:     bento
    Version:      1.0.0
    */

    Here is what it looks like in the Atom text editor.

    Atom Child Theme Code Snippet

  6. Save your additions to the style.css file in Atom. Saving changes to this file in Atom will trigger Transmit to upload the file to Pantheon automatically.

  7. Right-click the bento-child directory then select New File and name it functions.php. Open the file in Atom by double-clicking, then add the following code (which tells WordPress to apply our child theme's stylesheet) and save:

    functions.php
    <?php
    
    add_action( 'wp_enqueue_scripts', 'bento_child_enqueue_styles' );
    function bento_child_enqueue_styles() {
      $parent_style = 'bento-theme-styles';
        wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
        wp_enqueue_style( 'child-style',
            get_stylesheet_directory_uri() . '/style.css',
            array( $parent_style ),
            wp_get_theme()->get('Version')
        );
    }
  8. Now we should have a working child theme. From the WordPress Dashboard, navigate to the Appearance tab and activate the child theme.

    ProTip

    WP-CLI & Terminus

    You can do the exact same process from the command line using Terminus, the Pantheon CLI. Install Terminus, then run a WP-CLI command against the Dev environment to create the child theme scaffold for you automatically. That's right, go from all the steps above to a one-liner to kick things into warp speed:

    terminus wp <site>.<env> -- scaffold child-theme bento-child --parent_theme=bento
  9. Return to the Site Dashboard on Pantheon, and you should see two files ready to be committed to Git. They're from the child theme we just created. Write a commit message then click Commit to submit our new child theme to version control:

    Commit child-bento theme

Customize the Stylesheet

Finally, let’s make a few small customizations to our active child theme using Transmit and Atom.

  1. In Transmit, double-click the style.css file within the child theme's remote directory to open it up for edits in Atom.

  2. Add the following CSS snippets towards the bottom:

    style.css
    .site-content a:not(.button) {
        color: deepskyblue;
    }
    
    .site-header {
        background-color: salmon;
    }
  3. Save the file changes in Atom.

  4. Refresh the Dev environment's site URL and you should see your changes reflected. The header background should be salmon and the page should have deepskyblue anchors:

    Site with New CSS changes

  5. Return to the Site Dashboard on Pantheon, and you should see one file ready to be committed to Git. That's from recent edits to the child theme's style.css file. Write a commit message then click Commit to submit our new styles to version control:

    Commit child-bento theme

This example is a very simple demonstration of the edit process, and is not intended to be a comprehensive resource on extending the layout or design of a theme (which likely means writing custom PHP functions). If you're looking for advanced tips on how to build and maintain themes efficiently checkout the Theme Handbook on WordPress.org.