n0tion
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Show post summary on blog pageWhat if I make a custom php file for my blog page? Would this allow me to always display all posts on my blog page in summary, without affecting any other page on my site?
Forum: Fixing WordPress
In reply to: Google Analytics funny businessThank you nguoinhotuoi and zak_cagaros,
I woke up this morning to see my Google Analytics Reporting/Audience data. I was definitely being a bit inpatient, I had seen a couple of tuts where the tracking info would be updated after a few seconds. So I made the mistake of assuming mine would refresh also instantly.
Forum: Fixing WordPress
In reply to: Google Analytics funny businessI’m using the Twenty Twelve theme. Here is a look a the header.php
This is my URL<?php?><!DOCTYPE html> <!--[if IE 7]> <html class="ie ie7" <?php language_attributes(); ?>> <![endif]--> <!--[if IE 8]> <html class="ie ie8" <?php language_attributes(); ?>> <![endif]--> <!--[if !(IE 7) | !(IE 8) ]><!--> <html <?php language_attributes(); ?>> <!--<![endif]--> <head> <meta charset="<?php bloginfo( 'charset' ); ?>" /> <meta name="viewport" content="width=device-width" /> <title><?php wp_title( '|', true, 'right' ); ?></title> <link rel="profile" href="http://gmpg.org/xfn/11" /> <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" /> <?php // Loads HTML5 JavaScript file to add support for HTML5 elements in older IE versions. ?> <!--[if lt IE 9]> <script src="<?php echo get_template_directory_uri(); ?>/js/html5.js" type="text/javascript"></script> <![endif]--> <?php wp_head(); ?> <script> // This is where my Google Analytics tracking code is </script> </head> <body <?php body_class(); ?>> <div id="page" class="hfeed site"> <header id="masthead" class="site-header" role="banner"> <hgroup> <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1> <h2 class="site-description"><?php bloginfo( 'description' ); ?></h2> </hgroup> <nav id="site-navigation" class="main-navigation" role="navigation"> <h3 class="menu-toggle"><?php _e( 'Menu', 'twentytwelve' ); ?></h3> <a class="assistive-text" href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentytwelve' ); ?>"><?php _e( 'Skip to content', 'twentytwelve' ); ?></a> <?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'nav-menu' ) ); ?> </nav><!-- #site-navigation --> <?php if ( get_header_image() ) : ?> <a href="<?php echo esc_url( home_url( '/' ) ); ?>"><img src="<?php header_image(); ?>" class="header-image" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" /></a> <?php endif; ?> </header><!-- #masthead --> <div id="main" class="wrapper">Forum: Fixing WordPress
In reply to: Show post summary on blog pageBasically the homepage will be an About page. I want to stay away from plugins for this issue. I want to have the added advantage of understanding how my site is structured and ultimately how it works it terms of code.
Forum: Fixing WordPress
In reply to: Show post summary on blog pageThank you for the response @carrimak. I want to have my site set up with a static homepage, as it’s a personal website. Though I post regularly I don’t think I want it to be the focus of my site.
I still tried setting my front page to display my post to see if anything changed in my index.php. I also searched in settings for an option to display post summaries but I didn’t find anything relevant. Except for how articles will show in a feed.
I’m sure it’s possible to show posts summaries on my blog page with out having to set it as my frontpage. I’ve seen it on a couple of sites.