Appearance → Customize and upload your logo if required.', 'Ascent free' ); ?>

Settings → Reading and select a page to use as your homepage. If you don\'t have one yet, just create a page first.', 'Ascent free' ); ?>

Home template under Page Attributes → Template.', 'Ascent free' ); ?>

Settings → Reading and select a page to use as your blog. If you don\'t have one yet, just create a page first.', 'Ascent free' ); ?>

Portfolio page template. Then create an item to be shown on this portfolio by adding a new page and selecting the Portfolio item template as the template. This will then show on the page you have assigned the Portfolio template to. Do the same for all the items you want to add to your portfolio.', 'Ascent free' ); ?>

ID; // Getting Started URL $getting_started_url = admin_url( 'themes.php?page=ascent-getting-started' ); if ( ! get_user_meta( $user_id, 'ascent_getting_started_ignore_notice' ) ) { echo '

'; printf( __( ' %1$s activated! Visit the Getting Started page to view the help file or ask us a question. ', 'Ascent free' ), wp_get_theme(), esc_url( $getting_started_url ) ); printf( __( 'Hide this notice', 'Ascent free' ), '?ascent_getting_started_nag_ignore=0' ); echo "

"; } } add_action( 'admin_notices', 'ascent_getting_started_notice' ); function ascent_getting_started_nag_ignore() { global $current_user; $user_id = $current_user->ID; /* If user clicks to ignore the notice, add that to their user meta */ if ( isset( $_GET['ascent_getting_started_nag_ignore'] ) && '0' == $_GET['ascent_getting_started_nag_ignore'] ) { add_user_meta( $user_id, 'ascent_getting_started_ignore_notice', 'true', true ); } } add_action( 'admin_init', 'ascent_getting_started_nag_ignore' );