Skip to main content

Home/ Wordpress/ Group items tagged title

Rss Feed Group items tagged

marshal sandler

MarshalSandler.com » The Features You'll Love « WordPress.com - 0 views

  • The Features You’ll Love « WordPress.com Image via CrunchBase Just upgraded to latest version of Wordpress and Zemanta Wow New Dashboard Excellent I updated my Zemanta yesterday !  When designers understand semantics general semantics and mathematics you get a Zemanta ! This integration with Gmail makes E Mail use a valuable form of communication !   In my opinion Both Gmail and Yahoo are now true social media and advertsing tools ! The ability to add content and  photos may make an item worth opening in your In Box  WOW ! Finally there is a Firefox Add On that make Firefox Complete !  I also use Glue from Adaptive Blue and Tumblr which Mr Wilson is involved in! It is obvious to me than Mr Wilson understands the Internet is about content creation and distribution. I can see advertisers adding product to Zemanta and using Gmail and Yahoo to deliver ! The Features You’ll Love « WordPress.com. Related articles by Zemanta WordPress 2.7 - So Much to Love! (mcbuzz.wordpress.com) WordPress.com Bloggers Get New Support and Help Site (lorelle.wordpress.com) Zemanta now helps you write e-mails (news.cnet.com) Zemanta AdaptiveBlue
  •  
    worpress
Vernon Fowler

Function Reference/wp title « WordPress Codex - 0 views

  • The wp_title() function should not be used by a theme in conjunction with other strings or functions (like concocting with bloginfo('name') ) to set the title because it will render plugins unable to rewrite page titles correctly. The best practice is to use the wp_title filter with a callback function. This method is now a requirement for themes.
Vernon Fowler

Embeds « WordPress Codex - 0 views

  • Twitter (WordPress 3.4+)
  • Make sure that the URL is on its own line and not hyperlinked
  • SoundCloud (WordPress 3.5+)
  • ...5 more annotations...
  • SlideShare (WordPress 3.5+)
  • Scribd
  • Flickr (both videos and images)
  • Vimeo (note older versions of WP have issues with https embeds, just remove the s from the https to fix)
  • YouTube (only public and "unlisted" videos and playlists - "private" videos will not embed)
Rika Y

Fresh theme for WordPress at iLEMONed - 0 views

  • This port validates as XHTML 1.0 Strict and CSS 2.0, it is ready for plugins Gravatar and Brian's Latest Comments but NOT Widget-friendly (I dislike Widgets). I've tested it with Firefox / IE6 / Safari
Vernon Fowler

Post Types « WordPress Codex - 1 views

  • it is better if you prefix your identifier with a short namespace that identifies your plugin, theme or website that implements the custom post type. For example: acme_product or aw_product for products post type used by a hypothetical ACMEWidgets.com website
  • Namespacing your custom post type identifier will not guarantee against conflicts but will certainly minimize their likelihood.
  • Do pay close attention to not having your custom post type identifier exceed 20 characters though, as the post_type column in the database is currently a VARCHAR field of that length.
  • ...6 more annotations...
  • register_post_type( 'acme_product', array( 'labels' => array( 'name' => __( 'Products' ), 'singular_name' => __( 'Product' ) ), 'public' => true, 'has_archive' => true, ) );
  • When you namespace a custom post type identifier and still want to use a clean URL structure, you need to set the rewrite argument of the register_post_type() function. For example, assuming the ACME Widgets example from above:
  • 'rewrite' => array('slug' => 'products'),
  • Note: In some cases, the permalink structure must be updated in order for the new template files to be accessed when viewing posts of a custom post type.
  • single posts of a custom post type will use single-{post_type}.php and their archives will use archive-{post_type}.php where {post_type} is the $post_type argument of the register_post_type() function.
  • In any template file of the WordPress theme system, you can also create new queries to display posts from a specific post type. This is done via the post_type argument of the WP_Query object.
Vernon Fowler

Roles and Capabilities « WordPress Codex - 2 views

  • Editor – somebody who can publish and manage posts including the posts of other users. Author – somebody who can publish and manage their own posts. Contributor – somebody who can write and manage their own posts but cannot publish them. Subscriber – somebody who can only manage their profile.
  •  
    "edit_published_posts"
Vernon Fowler

Jetpack and WordPress SEO * disable OpenGraph in Jetpack * Yoast - 0 views

  • In their last release, they enabled OpenGraph tags by default with no setting to disable it. Even when you already have WordPress SEO enabled and OpenGraph enabled in that. This is making people freak  out everywhere as double OpenGraph tags lead to problems with Google+ and with Facebook.
  • The best solution, honestly, is to install another plugin by Mark Jaquith, called Manual Control for Jetpack. This disables Jetpack automatic activation of new modules. Now you at least have to manually do something for stuff to break on your site when the Jetpack team decides to push new stuff.
  • This particular OpenGraph feature is in the Publicize module, so you’d think you could disable that, but that doesn’t seem to work. Instead, adding this line in your functions.php should fix this particular problem:

    1add_filter( 'jetpack_enable_opengraph', '__return_false', 99 );
Luciano Ferrer

How can I make the title of widgets in my sidebar a link to another... - 1 views

  •  
    Utilizando un plugin
Jungle Jar

Wordpress Tutorial: Make Your Page Titles SEO Friendly - 0 views

  •  
    If you're a Wordpress Content Management System user, and you would like to make your page titles SEO friendly without installing any plug-ins or modifying your website too much, then this article might be for you. All it requires is a few lines of PHP in your header.php file.
Luciano Ferrer

How to Link Widget Titles Without a Plugin - The Web Princess - 1 views

  •  
    Utilizando una función
Rika Y

CA-Title - Create Custom Title For WP Page plugin 01 | こだわらない日々 - 0 views

  • ページごとのタイトルを自動で抽出し。各々のページに適切なタイトルに入れてくれるプラグイン。
PR Underground

SEO Title Tag Tips - 5 views

  •  
    Great tips on proper SEO title tag structure.
Vernon Fowler

Function Reference/current user can « WordPress Codex - 2 views

  • Do not pass a role name to current_user_can(), as this is not guaranteed to work correctly (see #22624). Instead, you may wish to try the check user role function put together by AppThemes.
  •  
    "Function Reference/current user can Description Whether the current user has a certain capability."
Luciano Ferrer

WordPress › Dashboard Tweaks « WordPress Plugins - 4 views

  •  
    "A list of the tweaks included in the Dashboard Tweaks plugin: - change the WordPress logo in the top-left of the admin bar with a custom admin logo - link that logo to the home URL instead of the new wp-admin/about.php - remove the entire sub-menu with links to Codex, forums and what not - remove the Visit Site sub-menu under the site's name - change "Howdy" into "Welcome back" - add a special favicon for the Dashboard only (ideally different from the frontend, but up to you) - change the tab title into a standard "Dashboard of [sitename]" - remove icons in front of Dashboard menus - reduce page heading size - remove publish icon of Add new Post/Page screens - add colored background to sidebar active sub-menu to add contrast - add colored background to activated plugins to add contrast - add custom footer text"
1 - 20 of 82 Next › Last »
Showing 20 items per page